标签: javascript
我有一个看起来像这样的变量:
const percent = (props.students.length / totalStudentsProgram) * 100;
它返回44.444444444444%我如何围绕它使它看起来像44.4%
答案 0 :(得分:1)
调用.toFixed将返回一个包含适当小数位数的字符串。
.toFixed
var str = percent.toFixed(1) + '%';