Enjoy 20% off all plans by following us on social media. Check out other promotions!
Quiz Questions

What's the difference between host objects and native objects?

Topics
JAVASCRIPT
Edit on GitHub

Native objects are objects that are part of the JavaScript language defined by the ECMAScript specification, such as String, Math, RegExp, Object, Function, etc.

Host objects are provided by the runtime environment (browser or Node), such as window, XMLHTTPRequest, etc.

Edit on GitHub