Allows access to JS API natives that have been replaced or removed by the Define API...

 

Syntax

Native.property // access property on global object

Return value

Native is a reference to the global object where JS API functions, constants and globals are stored.

Example

include; // function
 
Define("include", null); // remove JS API include function
 
incldude; // undefined
 
Native.include // function
Availability

This feature requires:

Contents

Jump to:

See also

Related articles:

  • Define API – add missing, remove or replace existing natives

Globals

Topics: