From 5844d4ec4ff92d64de6101a714282a65ce576050 Mon Sep 17 00:00:00 2001 From: Abhishek Rawat <39383758+rawatdev@users.noreply.github.com> Date: Wed, 14 Sep 2022 15:43:19 +0530 Subject: [PATCH] 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 --- .../content/115-javascript-modules/readme.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/106-javascript/content/115-javascript-modules/readme.md b/content/roadmaps/106-javascript/content/115-javascript-modules/readme.md index 2d00e995c..936cd807b 100644 --- a/content/roadmaps/106-javascript/content/115-javascript-modules/readme.md +++ b/content/roadmaps/106-javascript/content/115-javascript-modules/readme.md @@ -1 +1,8 @@ -# Javascript modules \ No newline at end of file +# 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. + +Free Content +Modules, introduction +Export and Import +Dynamic imports