有一個快速的JS問題。 math.round和parseInt有什麼區別?math.round vs parseInt
我做了一個JS腳本來概括提示數字的倒數:
<script type="text/javascript">
var numRep = prompt("How many repetitions would you like to run?");
var sum = 0;
var count = 0;
var i = 1; //variable i becomes 1
while (i <= numRep) {// repeat 5 times
var number = prompt("Please enter a non zero integer");
if(number==0){
document.write("Invalid Input <br>");
count++;
}
else{
document.write("The inverse is: " + 1/number + "<br>");
sum = sum + (1/parseInt(number)); //add number to the sum
}
i++; //increase i by 1
}
if (sum==0){
document.write("You did not enter valid input");}
else { document.write("The sum of the inverses is: " + sum); //display sum
}
</script></body></html>
,它使用parseInt函數。如果我想使用math.round,還有什麼我需要做的,它知道要相應地限制小數位數?
換句話說,math.round是否必須以某種方式進行格式化?
你比較蘋果和桔子。 'parseInt'將一個字符串轉換爲一個整數,而'Math.round()' - 很好地處理了一個浮點數。 –
但parseInt的東西是,它似乎總是將數字,如fractor例如,以合理數量的字符,而math.round似乎只圓整數 – Chris
旁註:說到舍入,parseInt是比Math.round慢得多:http://jsperf.com/math-floor-vs-math-round-vs-parseint/55 –