--- title: Math.asin() slug: Web/JavaScript/Reference/Global_Objects/Math/asin translation_of: Web/JavaScript/Reference/Global_Objects/Math/asin original_slug: Web/JavaScript/Referencia/Objetos_globales/Math/asin ---
La Funcion Math.asin()
retorna El arco seno (en radianes) de un número, eso es.
Math.asin(x)
x
The arcsine (in radians) of the given number if it's between -1 and 1; otherwise, {{jsxref("NaN")}}.
The Math.asin()
method returns a numeric value between and radians for x
between -1 and 1. If the value of x
is outside this range, it returns {{jsxref("NaN")}}.
Because asin()
is a static method of Math
, you always use it as Math.asin()
, rather than as a method of a Math
object you created (Math
is not a constructor).
Math.asin()
Math.asin(-2); // NaN Math.asin(-1); // -1.5707963267948966 (-pi/2) Math.asin(0); // 0 Math.asin(0.5); // 0.5235987755982989 Math.asin(1); // 1.5707963267948966 (pi/2) Math.asin(2); // NaN
For values less than -1 or greater than 1, Math.asin()
returns {{jsxref("NaN")}}.
Espesificacion | Estado | Comentario |
---|---|---|
{{SpecName('ES1')}} | {{Spec2('ES1')}} | Initial definition. Implemented in JavaScript 1.0. |
{{SpecName('ES5.1', '#sec-15.8.2.3', 'Math.asin')}} | {{Spec2('ES5.1')}} | |
{{SpecName('ES6', '#sec-math.asin', 'Math.asin')}} | {{Spec2('ES6')}} | |
{{SpecName('ESDraft', '#sec-math.asin', 'Math.asin')}} | {{Spec2('ESDraft')}} |
Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | {{CompatVersionUnknown}} | {{CompatVersionUnknown}} | {{CompatVersionUnknown}} | {{CompatVersionUnknown}} | {{CompatVersionUnknown}} | {{CompatVersionUnknown}} |
Feature | Android | Chrome for Android | Edge | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|---|
Basic support | {{CompatVersionUnknown}} | {{CompatVersionUnknown}} | {{CompatVersionUnknown}} | {{CompatVersionUnknown}} | {{CompatVersionUnknown}} | {{CompatVersionUnknown}} | {{CompatVersionUnknown}} |