What’s the difference between Host objects and Native objects?

Technology CommunityCategory: JavaScriptWhat’s the difference between Host objects and Native objects?
VietMX Staff asked 3 years ago
  • Native objects are objects that are part of the JavaScript language defined by the ECMAScript specification, such as StringMathRegExpObjectFunction, etc.
  • Host objects are provided by the runtime environment (browser or Node), such as windowXMLHTTPRequest, etc.