Add modules resources (#1760)

* Add modules resources

Added resouces of javascript.info it covers complete picture of modules like what is module and how to use import, export and dynamic imports.

* Update content/roadmaps/106-javascript/content/115-javascript-modules/readme.md

Co-authored-by: Kamran Ahmed <kamranahmed.se@gmail.com>
pull/1763/head
Abhishek Rawat 2 years ago committed by GitHub
parent 0d3d2d3ec3
commit 5844d4ec4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      content/roadmaps/106-javascript/content/115-javascript-modules/readme.md

@ -1 +1,8 @@
# Javascript modules # Modules
Modules encapsulate all sorts of code like functions and variables and expose all this to other files. Generally, we use it to break our code into separate files to make it more maintainable. They were introduced into JavaScript with ECMAScript 6.
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://javascript.info/modules-intro'>Modules, introduction</BadgeLink>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://javascript.info/import-export'>Export and Import</BadgeLink>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://javascript.info/modules-dynamic-imports'>Dynamic imports</BadgeLink>

Loading…
Cancel
Save