四舍五入函数将数字舍入到指定的小数位数。保留两位小数的四舍五入函数如下:
function round(num) {return Math.round(num 100) / 100;
}
要使用四舍五入函数,只需将要舍入的数字作为参数传递给函数即可。函数将返回舍入后的小数。
例如,要将数字 123.456789 舍入到两位小数,可以使用以下代码:
const rounded = round(123.456789);
console.log(rounded); // 输出:123.46
const rounded = round(123.5);
console.log(rounded); // 输出:123.5
四舍五入函数也可以用于舍入到比两位小数更多的位数。例如,要将数字 123.456789 舍入到四位小数,可以使用以下代码:
const rounded = round(123.456789, 4);
console.log(rounded); // 输出:123.4568
四舍五入函数是一种将数字舍入到指定小数位数的便捷而强大的工具。它易于使用,并且可以在各种情况下派上用场。
本文地址:https://www.qianwe.com/article/66fef867bf51b13b08ee.html