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
parent
0d3d2d3ec3
commit
5844d4ec4f
1 changed files with 8 additions and 1 deletions
@ -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…
Reference in new issue