ES6 - Funzione Math trunc ()

Restituisce la parte integrale di x (tutte le cifre frazionarie vengono rimosse).

Sintassi

Math.trunc( x ) ;

Parametro

  • X: rappresenta un numero

Esempio

console.log("---Math.trunc()---") 
console.log("Math.trunc(7.7) : "+Math.trunc(7.7)) 
console.log("Math.trunc(-5.8) : "+Math.trunc(-5.8))

Produzione

---Math.trunc()--- 
Math.trunc(7.7) : 7 
Math.trunc(-5.8) : -5