DE
JavaScript - Math.trunc() Methode - Beispiel
3
points
Die Math.trunc()
Methode gibt einen ganzzahligen Teil einer Zahl zurück.
// ONLINE-RUNNER:browser;
console.log( Math.trunc( 5 )); // 5
console.log( Math.trunc( 3.14 )); // 3
console.log( Math.trunc( -3.14 )); // -3
console.log( Math.trunc( 0.123 )); // 0
console.log( Math.trunc( -0.123 )); // -0
console.log( Math.trunc( '+3.14' ) ); // 3.14
console.log( Math.trunc( '-3.14' ) ); // -3.14
console.log( Math.trunc( NaN ) ); // NaN
console.log( Math.trunc( 'foo' ) ); // NaN
console.log( Math.trunc() ); // NaN
1. Dokumentation
Syntax | Math.trunc(number) |
Parameter | number - Ganzzahl-oder Gleitkommazahlwert (primitiver Wert). |
Ergebnis |
Ganzzahliger Teil des Wenn die Wenn Wenn |
Beschreibung |
|
2. Polyfill-Beispiel
Dieses Beispiel zeigt eine Polyfill-Lösung für das Fehlen der Methode.
// ONLINE-RUNNER:browser;
if (Math.trunc == null) {
Math.trunc = function (v) {
return v < 0 ? Math.ceil(v) : Math.floor(v);
};
}
// Anwendungsbeispiel:
console.log( Math.trunc( 5 )); // 5
console.log( Math.trunc( 3.14 )); // 3
console.log( Math.trunc( -3.14 )); // -3
console.log( Math.trunc( 0.123 )); // 0
console.log( Math.trunc( -0.123 )); // -0