JavaScript sqrt() Method

Clash Royale CLAN TAG#URR8PPP
<!--
main_leaderboard, all: [728,90][970,90][320,50][468,60]-->
JavaScript sqrt() Method
❮ JavaScript Math Object
Example
Return the square root of a number:
Math.sqrt(9);
<!--
The result will be:
3
-->Try it Yourself »
More "Try it Yourself" examples below.
Definition and Usage
The sqrt() method returns the square root of a number.
Browser Support
| Method | |||||
|---|---|---|---|---|---|
| sqrt() | Yes | Yes | Yes | Yes | Yes |
Syntax
Math.sqrt(x)Parameter Values
| Parameter | Description |
|---|---|
| x | Required. A number |
<!--
mid_content, all: [300,250][336,280][728,90][970,250][970,90][320,50][468,60]-->
Technical Details
| Return Value: | A Number. If x is a negative number, NaN is returned |
|---|---|
| JavaScript Version: | ECMAScript 1 |
More Examples
Example
Return the square root of different numbers:
var a = Math.sqrt(0);
var b = Math.sqrt(1);
var c = Math.sqrt(9);
var d = Math.sqrt(64);
var e = Math.sqrt(-9);
<!--
The result of a,b,c,d, and e will be:
0
1
3
8
NaN
-->Try it Yourself »
❮ JavaScript Math Object