Math.tan
Math.tan
Math.tan()
方法返回一个数值的正切值。
语法
Math.tan(x)
参数
x
一个数值,表示一个角(单位:弧度)。
返回值
给定数字的正切值。
描述
tan
方法返回一个数值,表示一个角的正切值。
由于tan
是Math
的静态方法,所以应该像这样使用 Math.tan()
,而不是作为你创建的 Math
实例的方法。
示例
使用Math.tan()
Math.tan(1 // 1.5574077246549023
由于该Math.tan()
函数接受弧度,但通常更容易处理度数,下面的函数接受一个以度为单位的值,将其转换为弧度并返回切线。
function getTanDeg(deg) {
var rad = deg * Math.PI/180;
return Math.tan(rad
}
规范
Specification | Status | Comment |
---|---|---|
ECMAScript 1st Edition (ECMA-262) | Standard | Initial definition. Implemented in JavaScript 1.0. |
ECMAScript 5.1 (ECMA-262)The definition of 'Math.tan' in that specification. | Standard | |
ECMAScript 2015 (6th Edition, ECMA-262)The definition of 'Math.tan' in that specification. | Standard | |
ECMAScript Latest Draft (ECMA-262)The definition of 'Math.tan' in that specification. | Draft | |
浏览器兼容性
Feature | Chrome | Firefox | Edge | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic Support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
Feature | Android | Chrome for Android | Edge mobile | Firefox for Android | IE mobile | Opera Android | iOS Safari |
---|---|---|---|---|---|---|---|
Basic Support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |