📜  javascript 截断十进制而不四舍五入 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:59.838000             🧑  作者: Mango

代码示例1
// 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