Skip to content

Instantly share code, notes, and snippets.

@ilearnjavascript
Created March 27, 2019 23:45
Show Gist options
  • Save ilearnjavascript/87bae57783d94041d3525816f3bbd72c to your computer and use it in GitHub Desktop.
Save ilearnjavascript/87bae57783d94041d3525816f3bbd72c to your computer and use it in GitHub Desktop.
es6 - modules - 4.js
// 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