underroot in js code example Example: javascript detect square number var isSquare = function (n) { return n > 0 && Math.sqrt(n) % 1 === 0; };