Roadmap to becoming a developer in 2022
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

8 lines
698 B

# 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>