Numbers preceding the value that is converted to a string will be added rather than concatenated : Convert to String « Data Type « Flash / Flex / ActionScript






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);
    }
  }
}

        








Related examples in the same category

1.Construct string object from a date type value
2.Use String() to convert integer to string
3.Number and int data types have a toString( ) method available
4.Add two number values in the middle of a string concatenation statement