toFixed() 方法指定小數位個數
toExponential() 方法用科學計數法表示數,參數指定小數位個數
toPrecision() 方法自動判斷呼叫toFixed()或toExponential()方法,參數指定所有數字的位數
var num = 99; >alert(toFixed(2)); //99.00
alert(toExponential(1)); //9.0e 1
alert(toPrecision(1)); //9.0e 1
alert(toPrecision (2)); //99
alert(toPrecision(3)); //99.0