JavaScript mendeteksi nomor kuadrat

var isSquare = function (n) {
    return n > 0 && Math.sqrt(n) % 1 === 0;
};
Master Cheeto Fu