在Javascript中添加百分号

时间:2013-09-27 01:09:53

标签: javascript percentage

在Javascript中我试图在我的函数结束时添加一个%符号,但是当我测试它时我得到了NaN。

function percentReadyForDegree(creditsEarned) { 
    return Math.round((creditsEarned / 71) * 100 + "%");
}  

percentReadyForDegree(30);

1 个答案:

答案 0 :(得分:6)

您需要将号码传递给Math.round。在你的代码中,你传递一个字符串。在操作后添加符号:

return Math.round(creditsEarned / 71 * 100) +'%';