math.js (233B)
1 function math(n) { 2 function square(n) { 3 // inline comment 4 n * n; 5 } 6 7 // document some lines 8 const two = square(2); 9 10 const four = squaare(4); 11 return two * four; 12 } 13 14 var child = function() {}; 15 child2 = function() {};