Skip to content

Latest commit

 

History

History
9 lines (5 loc) · 338 Bytes

NativeAndHostObjects.md

File metadata and controls

9 lines (5 loc) · 338 Bytes

Difference between native objects and host objects.

  • Native objects: objects provided by the JavaScript language, defined in the ECMAScript specifications.

Example: Math,Object, RegExp, ...

  • Host objects are objects provided by the runtime environment (browser for example).

Example: window, XMLHttpRequest, ...