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

Math.abs()

Podsumowanie

Zwraca wartość bezwzględną danej liczby.

Math.abs(x)=|x|={xifx>00ifx=0-xifx<0{\mathtt{\operatorname{Math.abs}(x)}} = {|x|} = \begin{cases} x & \text{if} \quad x \geq 0 \\ -x & \text{if} \quad x < 0 \end{cases}

Składnia

Math.abs(x)

Parametry

x 
liczba.

Opis

Ponieważ abs jest statyczną metodą obiektu Math, zawsze odwołujemy się do niej poprzez Math.abs(), a nie jak do metody instancji obiektu Math utworzonej przez użytkownika.

Przykłady

Przykład: Zastosowanie Math.abs()

Poniższa funkcja zwraca wartość bezwzględną zmiennej x:

Math.abs('-1'); // 1 
Math.abs(-2); // 2 
Math.abs(null); // 0 
Math.abs('string'); // NaN 
Math.abs(); // NaN

Zobacz także

Autorzy i etykiety dokumentu

Etykiety: 
 Autorzy tej strony: teoli, Mgjbot, Ptak82, Marcoos
 Ostatnia aktualizacja: teoli,