Home  >  Article  >  Web Front-end  >  How to find the square in javascript

How to find the square in javascript

青灯夜游
青灯夜游Original
2021-12-06 11:25:0414363browse

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)".

How to find the square in javascript

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);

How to find the square in javascript

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);

How to find the square in javascript

【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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn