Encapsulation refers to bundling related code in a single source. Encapsulation is used to restrict direct access to data and implementations of the bundled code from the code that uses them. The implementation of the functionalities is hidden, can't be manipulated by other parts of the code. A module can have only one default export, and you can omit the name of the function declaration.
1 Comment
Sort: