Number and int data types have a toString( ) method available : Convert to String « Data Type « Flash / Flex / ActionScript






Number and int data types have a toString( ) method available

 

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.toString(  ) + second + third;
        
        trace(result);

    }
  }
}

        








Related examples in the same category

1.Construct string object from a date type value
2.Use String() to convert integer to string
3.Numbers preceding the value that is converted to a string will be added rather than concatenated
4.Add two number values in the middle of a string concatenation statement