Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

javascript truncate decimal without rounding

// truncate function
// in this example the default value is 2
function truncate(number, index = 2) {
  	// cutting the number
    return +number.toString().slice(0, (number.toString().indexOf(".")) + (index + 1));
}

// example
console.log(truncate(1234.56789, 3)); // 1234.567
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #javascript #truncate #decimal #rounding
ADD COMMENT
Topic
Name
8+3 =