For side effects only, without importing any variables, use import _________ from 'module-name'.
- { sideEffect }
- sideEffect
- * as sideEffect
- sideEffect as default
In this scenario, the correct option is c) * as sideEffect. This syntax allows importing all exports from the 'module-name' without explicitly naming them.
Loading...
Related Quiz
- In a web application that requires real-time data updates, how would the choice between Promises and callbacks affect performance and user experience?
- When an async function throws an error and it is not caught, it results in a rejected __________.
- How does the behavior of 'this' in arrow functions affect their usage as methods in an object?
- In a Promise-based AJAX call, ________ is used to asynchronously await the response without blocking the execution.
- Arrow functions should not be used as ________ because they cannot be used with the new operator.