Languages
[Edit]
DE

JavaScript - Math.trunc() Methode - Beispiel

3 points
Created by:
Nikki
10520

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

SyntaxMath.trunc(number)
Parameternumber - Ganzzahl-oder Gleitkommazahlwert (primitiver Wert).
Ergebnis

Ganzzahliger Teil desZahlenwerts  (primitiver Wert).

Wenn die number  NaN ist, wird NaN zurückgegeben. 

Wenn number -Infinity ist, wird -Infinity zurückgegeben. 

Wenn number  +Infinity ist, wird +Infinity zurückgegeben. 

Beschreibung

Math.trunc() ist eine statische Methode, die einen Parameter verwendet und einen ganzzahligen Teil der als Argument übergebenen Zahl zurückgibt. Ganzzahlen werden ohne Änderungen zurückgegeben.

Hinweis: Diese Methode wurde in ES 2015 eingeführt. 

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

Literaturverzeichnis

  1. Trunkierung (Mathematik) - 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 - Objekt Math (DE)

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