When importing a named export, what syntax must you use?
- import { exportName } from 'module';
- import * as exportName from 'module';
- import { exportName } as 'alias' from 'module';
- import exportName from 'module';
When importing a named export in ES6, you use the syntax import { exportName } from 'module';. This allows you to bring in a specific exported item from the module.
Loading...
Related Quiz
- __________ methods in ES6 classes are methods that are bound to the class itself, not to instances of the class.
- What is the base case in a recursive function?
- In ES6, you can directly assign ________ to object properties without repeating the variable name.
- What is the role of the catch block in an async/await function?
- When using Promise.all(), if any promise is rejected, the entire operation is considered _________.