How should a developer import every function from the module and then call the functions foo and bar?

A developer wants to use a module named universalContainersLib and then call functions from it.

How should a developer import every function from the module and then call the functions foo and bar?
A . import * from ‘/path/universalContainersLib.js’; universalContainersLib. foo ()7 universalContainersLib.bar ();
B. import {foo,bar} from ‘/path/universalCcontainersLib.js’;
foo():
bar()?
C. import all from ‘/path/universalContainersLib.js’; universalContainersLib.foo(); universalContainersLib.bar ();
D. import * as lib from ‘/path/universalContainersLib.js’;
lib.foo();
lib. bar ();

Answer: D

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments