I'm a lot have read about ES.Next and I'm have question about ES.Next Modules. In this time all JavaScript programmer's write JavaScript libraries in Anonymous functions. Something like jQuery:
(function( window, undefined ) {
// ...
window.jQuery = window.$ = jQuery;
})( window );
underscore:
(function() {
// ...
}).call( this );
But how all change when JavaScript get's Modules?
// MyLibrary.js
module MyLibrary {
export function Hello() {
console.log( 'Hello' );
}
}
// Example.js
import Hello from MyLibrary;
Hello(); // Hello
Or Modules too need write in Anonymous functions? How about Global variables? And how all JavaScript coding style change when come ES.Next?