javascript
JavaScript中带有示例的Math.cos()方法
JavaScript | Math.cos()方法 (JavaScript | Math.cos() Method)
Math.cos() is a function in math library of JavaScript that is used to find the value of cosine of a number and return the value in radians.
Math.cos()是JavaScript數學庫中的一個函數,用于查找數字的余弦值并返回以弧度為單位的值。
Syntax:
句法:
Math.cos(x);Parameter(s):
參數:
x – It represents the value whose cosine value to be found.
x –表示要找到其余弦值的值。
Return value:
返回值:
The return type of this method is number, it returns the cosine value of the given x.
此方法的返回類型為number ,它返回給定x的余弦值。
Values accepted: Integer, floating-point, numeric string.
接受的值:整數,浮點數,數字字符串。
Invalid Values: non-numeric string, empty variable, empty array all will return NaN (Not a Number).
無效值:非數字字符串,空變量,空數組都將返回NaN(非數字)。
Browser support: Chrome, Internet asinlorer, Mozilla, Safari, Opera mini.
瀏覽器支持: Chrome,Internet代理,Mozilla,Safari,Opera mini。
Example 1: Valid values
示例1:有效值
console.log(Math.cos(-1)); console.log(Math.cos(0.1)); console.log(Math.cos(2)); console.log(Math.cos("0.65"));Output
輸出量
0.5403023058681398 0.9950041652780257 -0.4161468365471424 0.7960837985490559Example 2: Invalid values
示例2:無效值
console.log(Math.cos("Javascript"));Output
輸出量
NaN翻譯自: https://www.includehelp.com/code-snippets/math-cos-method-with-example-in-javascript.aspx
總結
以上是生活随笔為你收集整理的JavaScript中带有示例的Math.cos()方法的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 图解Java中的18 把锁!
- 下一篇: SpringBoot 过滤器、拦截器、监