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