The __________ file in a module directory helps in defining the entry point for the module in ES6.
- main.js
- module.js
- index.js
- entry.js
In ES6, the index.js file serves as the default entry point for a module within a directory. It is automatically recognized when importing the module.
Loading...
Related Quiz
- JavaScript’s __________ nature allows it to perform non-blocking operations despite being single-threaded.
- How would you use a for...of loop to iterate over a string?
- Default parameters can be combined with object destructuring to construct complex default values.
- In an async function, what happens to unhandled exceptions?
- How does tree shaking affect the handling of side effects in JavaScript modules?