Languages
[Edit]
PL

JavaScript - Math.floor() przykład metody z dokumentacją

3 points
Created by:
Sylwia
3590

Funkcja Math.floor() zwraca liczbę całkowitą, zaokrągloną w dół, która jest mniejsza lub równa argumentowi.

// ONLINE-RUNNER:browser;

console.log( Math.floor(  5     ) ); //  5

console.log( Math.floor(  2.49  ) ); //  2
console.log( Math.floor(  2.50  ) ); //  2
console.log( Math.floor(  2.51  ) ); //  2

console.log( Math.floor( -2.49  ) ); // -3
console.log( Math.floor( -2.50  ) ); // -3
console.log( Math.floor( -2.51  ) ); // -3

console.log( Math.floor(  0.999 ) ); //  0
console.log( Math.floor(  1.001 ) ); //  1
console.log( Math.floor( -1.001 ) ); // -2

1. Dokumentacja

SkładniaMath.floor(liczba)
Parametryliczba - wartość liczbowa całkowita lub zmiennoprzecinkowa (wartość pierwotna)
Wynik

Zaokrąglona w dół liczba (wartość pierwotna).

Jeśli liczba wejściowa jest równa NaN, zwraca NaN.

Jeśli liczba wejściowa jest równa -Nieskończoność, zwraca -Nieskończoność.

Jeśli liczba wejściowa jest równa +Nieskończoność, zwraca +Nieskończoność.

Opis

floor jest metodą statyczną, która przyjmuje tylko jeden parametr i zwraca wartość zaokrąglona w dół.


2. Zaokrąglanie w dół z dokładnością do n miejsc, przykład.

// ONLINE-RUNNER:browser;

function floorPrecised(number, precision) {
	var power = Math.pow(10, precision);

  	return Math.floor(number * power) / power;
}

// Przykład:

console.log( floorPrecised(     5  ,  0 ) ); // 5
console.log( floorPrecised(     5. ,  0 ) ); // 5
console.log( floorPrecised(      .5,  0 ) ); // 0

console.log( floorPrecised(  1.1234,  0 ) ); // 1
console.log( floorPrecised(  1.1234,  1 ) ); // 1.1
console.log( floorPrecised(  1.1235,  2 ) ); // 1.12
console.log( floorPrecised(  1.1235,  3 ) ); // 1.123

console.log( floorPrecised( -1.1234,  0 ) ); // -2
console.log( floorPrecised( -1.1234,  1 ) ); // -1.2
console.log( floorPrecised( -1.1234,  2 ) ); // -1.13
console.log( floorPrecised( -1.1234,  3 ) ); // -1.124
 
console.log( floorPrecised(    1234, -1 ) ); // 1230
console.log( floorPrecised(    1234, -2 ) ); // 1200
console.log( floorPrecised(    1234, -3 ) ); // 1000

console.log( floorPrecised(  5_000.000_001,  0 ) ); // 5000
console.log( floorPrecised(  5_000.000_001,  6 ) ); // 5000.000001
console.log( floorPrecised(  5_000.000_001, -3 ) ); // 5000

3. Bibliografia

  1. Floor and ceiling functions - Wikipedia
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

JavaScript - obiekt Math (PL)

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join