Math.sin()Math.sin() 静态方法返回以弧度表示的数字的正弦值。 ¥The Math.sin() static method returns the sine of a number in radians.Try it 语法¥Syntax jsMath.sin(x) 参数¥Parameters x 表示角度(以弧度表示)的数字。 返回值¥Return value x 的正弦值,介于 -1 和 1 之间(包含 -1 和 1)。如果 x 是 Infinity、-Infinity 或 NaN,则返回 NaN。 ¥The sine of x, between -1 and 1, inclusive. If x is Infinity, -Infinity, or NaN, returns NaN. 描述¥Description 因为 sin() 是 Math 的静态方法,所以你始终将其用作 Math.sin(),而不是用作你创建的 Math 对象的方法(Math 不是构造函数)。 ¥Because sin() is a static method of Math, you always use it as Math.sin(), rather than as a method of a Math object you created (Math is not a constructor). 示例¥Examples 使用 Math.sin()¥Using Math.sin() jsMath.sin(-Infinity); // NaN Math.sin(-0); // -0 Math.sin(0); // 0 Math.sin(1); // 0.8414709848078965 Math.sin(Math.PI / 2); // 1 Math.sin(Infinity); // NaN 规范SpecificationECMAScript Language Specification # sec-math.sin¥Specifications 浏览器兼容性BCD tables only load in the browser with JavaScript enabled. Enable JavaScript to view data.¥Browser compatibility 也可以看看¥See also Math.acos() Math.asin() Math.atan() Math.atan2() Math.cos() Math.tan()