To import only a part of a module, use the __________ syntax in ES6.

  • import {specificPart} from
  • include {specificPart} from
  • load {specificPart} from
  • require {specificPart} from
In ES6, when importing only a part of a module, you use the {} syntax. For example, import {specificPart} from 'moduleName'; allows you to import only the specified part of the module.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *