Register Now

Login

Lost Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

What could be achieved by running the JavaScript code snippet below?
var sets = com.davidflanagan.collections.sets;

What could be achieved by running the JavaScript code snippet below?
var sets = com.davidflanagan.collections.sets;
a) Importing a single module
b) Importing a module partially
c) Importing a namespace
d) Importing the entire module

Answer: d
Explanation: Rather than importing individual classes, a programmer might import the entire module to the global namespace.

Join The Discussion