-
-
Save ilearnjavascript/87bae57783d94041d3525816f3bbd72c to your computer and use it in GitHub Desktop.
es6 - modules - 4.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// default export | |
export default 'defaultModule'; | |
// named export | |
export const module1 = 'module1'; | |
export const module2 = 'module2'; | |
export const module3 = 'module2'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment