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 examples


Flash / Flex / ActionScript examples » Data Type » Variable Declare »

 

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;
  
  public class Main extends Sprite{
    public function Main(){

        var myVariable:Number = null;
        trace(myVariable);
        
        var sMessage:String = "Welcome!";
        trace(sMessage);
    }
  }
}

        



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


Flash / Flex / ActionScript examples

 Navioo Data Type
» Variable Declare