Month: May 2012

  • Helpful snippet for me at the moment

    Here’s a handy little code snippet. Need to append the placement of a number? Use this! private function getNth (num:Number):String { var qn:int = ((num%100) / 10); var rn:int = num % 10; var suffix:String = “th”; if (qn != 1) { switch (rn) { case 1: suffix = “st”; break; case 2: suffix = […]