Math.sqrt()

基线 广泛可用

此功能已得到良好建立,并在许多设备和浏览器版本中都能正常工作。它自以下时间起在所有浏览器中都可用 2015 年 7 月.

Math.sqrt() 静态方法返回数字的平方根。也就是说

x 0 , 𝙼𝚊𝚝𝚑.𝚜𝚚𝚛𝚝 ( 𝚡 ) = x = 唯一的 y 0 使得 y 2 = x \forall x \geq 0,\;\mathtt{\operatorname{Math.sqrt}(x)} = \sqrt{x} = \text{the unique } y \geq 0 \text{ such that } y^2 = x

试一试

语法

js
Math.sqrt(x)

参数

x

大于或等于 0 的数字。

返回值

x 的平方根,一个非负数。如果 x < 0,则返回 NaN

描述

由于 sqrt()Math 的静态方法,因此您始终将其用作 Math.sqrt(),而不是用作您创建的 Math 对象的方法 (Math 不是构造函数)。

示例

使用 Math.sqrt()

js
Math.sqrt(-1); // NaN
Math.sqrt(-0); // -0
Math.sqrt(0); // 0
Math.sqrt(1); // 1
Math.sqrt(2); // 1.414213562373095
Math.sqrt(9); // 3
Math.sqrt(Infinity); // Infinity

规范

规范
ECMAScript 语言规范
# sec-math.sqrt

浏览器兼容性

BCD 表格仅在启用 JavaScript 的浏览器中加载。

另请参阅