The Math.trunc() function
returns the integer part of a number by removing any fractional digits.
console.log(Math.trunc(13.37));
// expected output: 13
console.log(Math.trunc(42.84));
// expected output: 42
console.log(Math.trunc(0.123));
// expected output: 0
console.log(Math.trunc(-0.123));
// expected output: -0
Math.trunc(4.9);
Math.trunc(4.7);
Math.trunc(4.4);
Math.trunc(4.2);
Math.trunc(-4.2);
// Math.trunc()
// The Math. trunc() function returns the integer part of a number by removing any fractional digits.
// EXAMPLE : 1
let num = Math.trunc(99.75);
console.log(num);
// OUTPUT: 99
// EXAMPLE : 2
let num_1 = Math.trunc(-57.43);
console.log(num_1);
// OUTPUT: 57