smileTan

导航

decimal 保留小数

const RoundNum = (num, decimal) => Math.round(num * 10 ** decimal) / 10 ** decimal;
const num = RoundNum(1.2345, 2);

  

posted on 2022-05-09 11:14  smileTan  阅读(82)  评论(0编辑  收藏  举报