JavaScripti matemaatika abs ()

Funktsioon JavaScript Math.abs () tagastab arvu absoluutväärtuse.

Arvu x absoluutväärtus, mida tähistatakse | x | , on määratletud järgmiselt:

  • xkui x> 0
  • 0kui x = 0
  • -xkui x <0

Funktsiooni süntaks Math.abs()on:

 Math.abs(x)

abs(), mis on staatiline meetod, nimetatakse Mathklassi nime kasutades .

Math.abs () parameetrid

Math.abs()Funktsioon võtab:

  • x - A, Numbermille absoluutväärtus tuleb tagastada.

Tagastatav väärtus Math.abs ()

  • Tagastab määratud arvu absoluutväärtuse.
  • Tagastab, NaNkui:
    • Tühi object
    • Mittearvuline String
    • undefined/ tühi muutuja
    • Array rohkem kui ühe elemendiga
  • Tagastab 0, kui:
    • Tühi String
    • Tühi Array
    • null

Näide 1: Math.abs () kasutamine numbriga

 // Using Math.abs() with Number value1 = Math.abs(57); console.log(value1); // 57 value2 = Math.abs(0); console.log(value2); // 0 value3 = Math.abs(-2); console.log(value3); // 2 // Using Math.abs() with numeric non-Number // single item array value = Math.abs((-3)); console.log(value); // 3 // numeric string value = Math.abs("-420"); console.log(value); // 420

Väljund

 57 0 2 3 420

Näide 2: Math.abs () kasutamine mittearvuga

 // Using Math.abs() with non-Number // Math.abs() gives NaN for // empty object value = Math.abs(()); console.log(value); // NaN // non-numeric string value = Math.abs("Programiz"); console.log(value); // NaN // undefined value = Math.abs(undefined); console.log(value); // NaN // Array with>1 items value = Math.abs((1, 2, 3)); console.log(value); // NaN // Math.abs() gives 0 for // null objects console.log(Math.abs(null)); // 0 // empty string console.log(Math.abs("")); // 0 // empty array console.log(Math.abs(())); // 0

Väljund

 NaN NaN NaN NaN 0 0 0

Huvitavad Artiklid...