Use String() to convert integer to string : Convert to String « Data Type « Flash / Flex / ActionScript






Use String() to convert integer to string

 

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

    }
  }
}

        








Related examples in the same category

1.Construct string object from a date type value
2.Numbers preceding the value that is converted to a string will be added rather than concatenated
3.Number and int data types have a toString( ) method available
4.Add two number values in the middle of a string concatenation statement