When importing a module without specifying a subpath, ES6 will by default look for a file named ________.
- main.js
- module.js
- index.js
- entry.js
If a specific subpath is not provided during the import, ES6 will default to looking for a file named index.js within the target module directory.
Loading...
Related Quiz
- In a Promise-based AJAX call, ________ is used to asynchronously await the response without blocking the execution.
- In ES6, ________ methods are methods that are shared among all instances of a class.
- The spread operator can be used in ES6 to clone an array without ________ the original array.
- The ________ method is a special method for creating and initializing objects created within a class.
- What is the significance of weak references in WeakMap and WeakSet with regards to memory management?