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






Convert undefined to string

 


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


    }
  }
}

        








Related examples in the same category

1.The undefined value represents the absence of data for variables, parameters, and return values without a specified type annotation.