In Node.js, ES6 Modules have a different file extension (_________) compared to CommonJS modules (.js).
- .mjs
- .es6
- .es
- .node
Node.js uses the .mjs file extension for ES6 modules to differentiate them from CommonJS modules that typically use the .js extension. This helps Node.js to identify the module type and apply the appropriate module loading mechanism.
Loading...
Related Quiz
- If a class extends another class, the constructor of the child class must call _______ to access the parent's properties.
- How does the ES6 specification handle tail call optimization and what are its limitations in JavaScript implementations?
- When implementing code splitting using dynamic imports, large bundles are broken into smaller __________.
- The Array method __________ is an example of a higher-order function that takes a function as its argument.
- In a scenario where you need to create private-like properties in an object, how would the Symbol type be used effectively?