how to find the square of a number in javascript code example
Example 1: how to square a value in javascript
// Use Math.pow(a,b); where a is your value and b is the exponent
var num = Math.pow(4, 2);
//num returns 16
Example 2: javascript detect square number
var isSquare = function (n) {
return n > 0 && Math.sqrt(n) % 1 === 0;
};
Example 3: number square n times in typescript
Math.pow(x1, 2)
x1 * x1
x1 ** 2 // ES6 syntax
function square(firstNumber: number, secondNumber: number):number{
return firstNumber ** secondNumber
}
// For example
console.log(square(4,2))
//output.:
16