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數(shù)學(xué)庫(kù)中的一個(gè)函數(shù),用于查找數(shù)字的余弦值并返回以弧度為單位的值。
Syntax:
句法:
Math.cos(x);Parameter(s):
參數(shù):
- 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.
接受的值:整數(shù),浮點(diǎn)數(shù),數(shù)字字符串。
Invalid Values: non-numeric string, empty variable, empty array all will return NaN (Not a Number).
無(wú)效值:非數(shù)字字符串,空變量,空數(shù)組都將返回NaN(非數(shù)字)。
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:無(wú)效值
console.log(Math.cos("Javascript"));Output
輸出量
NaN翻譯自: https://www.includehelp.com/code-snippets/math-cos-method-with-example-in-javascript.aspx
總結(jié)
以上是生活随笔為你收集整理的JavaScript中带有示例的Math.cos()方法的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
 
                            
                        - 上一篇: 图解Java中的18 把锁!
- 下一篇: java计算时间差距_硬计算和软计算之间
