Home >Web Front-end >JS Tutorial >How to find the square in javascript
How to find squares in JavaScript: 1. Use the "*" multiplication operator, the syntax is "x * x", and the parameter "x" is the value that needs to be squared; 2. Use the pow() method, the syntax "Math.pow(x,2)".
The operating environment of this tutorial: windows7 system, javascript version 1.8.5, Dell G3 computer.
Javascript method of finding squares
1. Use the "*" multiplication operator
"*" multiplication operator: "x * y" means calculating the product of x times y
If you want to find the square, you can use "x * x
".
var x=5; var product=x * x; console.log(product);
2. Use the pow() method
pow() method to return x raised to the y power.
Syntax:
Math.pow(x,y)
If you want to find the square, you can use "Math.pow(x,2)
".
var x=6; var product=Math.pow(x,2); console.log(product);
【Related recommendations: javascript learning tutorial】
The above is the detailed content of How to find the square in javascript. For more information, please follow other related articles on the PHP Chinese website!