在Javascript中我试图在我的函数结束时添加一个%符号,但是当我测试它时我得到了NaN。
function percentReadyForDegree(creditsEarned) {
return Math.round((creditsEarned / 71) * 100 + "%");
}
percentReadyForDegree(30);
答案 0 :(得分:6)
您需要将号码传递给Math.round
。在你的代码中,你传递一个字符串。在操作后添加符号:
return Math.round(creditsEarned / 71 * 100) +'%';