--- title: Math.cos() slug: Web/JavaScript/Referencia/Objectes_globals/Math/cos translation_of: Web/JavaScript/Reference/Global_Objects/Math/cos ---
La funció Math.cos()
retorna el cosinus d'un nombre.
Math.cos(x)
x
El mètode Math.cos()
retorna un valor numèric entre -1 i 1, que representa el cosinus d'un angle.
Degut a que cos()
és un mètode estàtic de Math
, sempre s'utilitza com a Math.cos()
, en comptes de com a mètode d'una instància de Math
(Math
no és un constructor).
Math.cos()
Math.cos(0); // 1 Math.cos(1); // 0.5403023058681398 Math.cos(Math.PI); // -1 Math.cos(2 * Math.PI); // 1
Especificació | Estat | Comentaris |
---|---|---|
ECMAScript 1a Edició. | Standard | Definició inicial. Implementat a JavaScript 1.0. |
{{SpecName('ES5.1', '#sec-15.8.2.7', 'Math.cos')}} | {{Spec2('ES5.1')}} | |
{{SpecName('ES6', '#sec-math.cos', 'Math.cos')}} | {{Spec2('ES6')}} |
Característica | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Suport bàsic | {{CompatVersionUnknown}} | {{CompatVersionUnknown}} | {{CompatVersionUnknown}} | {{CompatVersionUnknown}} | {{CompatVersionUnknown}} |
Característica | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Suport bàsic | {{CompatVersionUnknown}} | {{CompatVersionUnknown}} | {{CompatVersionUnknown}} | {{CompatVersionUnknown}} | {{CompatVersionUnknown}} | {{CompatVersionUnknown}} |