Mega Code Archive

 
Categories / Flash ActionScript / Data Type
 

Numbers preceding the value that is converted to a string will be added rather than concatenated

package{   import flash.display.Sprite;      public class Main extends Sprite{     public function Main(){         var first:int = 24;         var second:int = 42;         var third:int = 21;                  var result:String = first + second + String( third );                  trace(result);     }   } }