In ES6, setting "type": "______" in package.json informs Node.js to treat JavaScript files as ES modules.
- "ES6"
- "module"
- "script"
- "import"
By setting "type": "module" in package.json, Node.js is informed to treat JavaScript files as ES modules, allowing the use of import/export syntax and adhering to ES6 module behavior.
Loading...
Related Quiz
- The _________ dead zone refers to the time during which a let or const variable cannot be accessed.
- In a WeakSet, the existence of an object in the set does not prevent it from being ________ by the garbage collector.
- How do you import a specific function from a module in ES6?
- __________ recursion refers to a situation where a recursive function calls itself multiple times within a single step.
- How does error handling in Promises compare to that in traditional callback patterns?