Friday, August 23, 2019

ECMAScript 6 modules


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
  • Variables that are created in the top level of a module are not added to the global scope
  • 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.

Defining an ES6 module

We can define an ES6 module either inside of a .js file, or inside a 

No comments:

Followers

Link