Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Math.acos()

Переклад не закінчено. Будь ласка, допоможіть перекласти цю статтю з англійської.

Math.acos() - це метод, який повертає арккосинус(в радіанах)  з числа. Наприклад

x[-1;1],Math.acos(x)=arccos(x)= the unique y[0;π]such thatcos(y)=x\forall x \in [{-1};1],\;\mathtt{\operatorname{Math.acos}(x)} = \arccos(x) = \text{ унікальний } \; y \in [0; \pi] \, \text{such that} \; \cos(y) = x

Синтакс

Math.acos(x)

Параметри

x
Число.

Опис

Math.acos() метод вертає число між  0 і π радіан,  для x між-1 і 1. Якщо число вийде за межі -1 ... +1,  метод верне NaN.

Оскільки acos() є статичним методом в обєкта Math, ви завжди повинні використовувати його як Math.acos(), а не викликати метод на створеному екземплярі обєкта Math (тому що Math не є конструктором).

Приклади

Math.acos(-2);  // NaN
Math.acos(-1);  // 3.141592653589793
Math.acos(0);   // 1.5707963267948966
Math.acos(0.5); // 1.0471975511965979
Math.acos(1);   // 0
Math.acos(2);   // NaN

Для значень менших за -1 або більших за 1, Math.acos() повертає NaN.

Специфікація

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.acos' in that specification.
Standard  
ECMAScript 2015 (6th Edition, ECMA-262)
The definition of 'Math.acos' in that specification.
Standard  
ECMAScript 2017 Draft (ECMA-262)
The definition of 'Math.acos' in that specification.
Draft  

Підтримка браузерами

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support (Yes) (Yes) (Yes) (Yes) (Yes)
Feature Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support (Yes) (Yes) (Yes) (Yes) (Yes) (Yes)

Дивіться також

Мітки документа й учасники

 Зробили внесок у цю сторінку: 6pm
 Востаннє оновлена: 6pm,