In the new version of JavaScript, ECMAScript 6 (also known as ES6), native modules have been introduced. Thefollowing points are some of the most important aspects of these modules:
- Module code always automatically runs in strict mode
- A module must export anything that should be available to the outside code
- A module can import bindings (things that are exported from other modules)
The main idea behind modules in ES6 is to give you complete control over what is accessible to the outside code from inside the module, as well as when the code inside of the module is executed.
Let's have a look at a simple example of an ES6 module.
No comments:
Post a Comment