标签: node.js rounding
有没有更快的方法将数字舍入到两位小数,那么这种方法(货币四舍五入)?
function Round(number) { return (Math.round(number * 100) / 100).toFixed(2); }