|
September 9, 2000 Trimming Decimal Numbers Tips: September 2000
Yehuda Shiran, Ph.D.
|
|
Until IE5.5, formatting numbers was a real challenge. We all used high mathematical functions such as Math.ceil and Math.pow to format numbers the way we wanted to. IE5.5 fixes this problem with three new methods of the Number prototype object:
toFixed(fractionDigits) method formats a number with fractionDigits digits after the decimal place. If, for example,
and you call alert(x.toFixed(3)), you'll get 2.346 in IE5.5
.Learn more about formatting in Internet Explorer 5.5 in Column 59, IE 5.5: Formatting, URIs, and Stack Operations.
People who read this tip also read these tips: Look for similar tips by subject: |