It is a good practice to initialize your variables to null when you don't have any other specific value to assign to them : Variable Declare « Data Type « Flash / Flex / ActionScript
It is a good practice to initialize your variables to null when you don't have any other specific value to assign to them
package{
import flash.display.Sprite;
publicclass Main extends Sprite{
public function Main(){
var myVariable:Number = null;
trace(myVariable);
var sMessage:String = "Welcome!";
trace(sMessage);
}
}
}