-타울- 아는만큼 보인다.
public static function decimalCutting(input:Number, places:Number):Number { return Math.round( Math.pow(10, places) * input / Math.pow(10, places) ); } 또는 var n:Number; n.toFixed(2);