Posts Tagged “toFixed”

Recently I was asked if I know how to show a number with a fixed number of digits after the decimal point. Here is how it can be done:

var num:Number = 12.3456;
trace(num.toFixed(2));// => 12.34

ATTENTION: This method Read the rest of this entry »

Share

Comments No Comments »

TxEff - The Flash Text Effects