Convert null to string : null « Data Type « Flash / Flex / ActionScript






Convert null to string

 


package{
  import flash.display.Sprite;
  
  public class Main extends Sprite{
    public function Main(){

        trace(null); // null

    }
  }
}

        








Related examples in the same category

1.Checking for Null Values
2.If statement ladder