List of questions
Related questions
Question 42 - Certified JavaScript Developer I discussion
developer wants to use a module named universalContainersLib and them call functions from it.
How should a developer import every function from the module and then call the fuctions foo and bar ?
A.
import * ad lib from '/path/universalContainersLib.js'; lib.foo(); lib.bar();
B.
import (foo, bar) from '/path/universalContainersLib.js'; foo(); bar();
C.
import all from '/path/universalContaineraLib.js'; universalContainersLib.foo(); universalContainersLib.bar();
D.
import * from '/path/universalContaineraLib.js'; universalContainersLib.foo(); universalContainersLib.bar();
Your answer:
0 comments
Sorted by
Leave a comment first