To rename a named export during import, use the syntax import { originalName as ______ } from 'module-name';.
- newName
- importedName
- aliasName
- renamedName
When importing a named export and giving it a new name, use the as keyword, making option c) aliasName the correct choice. The syntax is import { originalName as aliasName } from 'module-name';.
Loading...
Related Quiz
- What is the syntax to export a single function from an ES6 module?
- In ES6, how can the spread operator (...) be used in a recursive function?
- The _________ dead zone refers to the time during which a let or const variable cannot be accessed.
- To re-export all named exports from a module, use export * from _________.
- When optimizing a web application for performance, considering the need for tree shaking and module caching, which module system offers more advantages?