美文网首页
小数转百分比并保留几位小数方法

小数转百分比并保留几位小数方法

作者: LL天HH土 | 来源:发表于2022-02-22 10:49 被阅读0次
      const decimalToPercentFn = (val: number | string, digits = 2) => {
      const perVal = Number(val || 0) * 100;
      const strPer = perVal.toFixed(digits);
      return `${Number(strPer)}%`;
    };
    

    相关文章

      网友评论

          本文标题:小数转百分比并保留几位小数方法

          本文链接:https://www.haomeiwen.com/subject/wkqglrtx.html