Login to manage your account

Please enter a valid email address.
Forgot Password?
Please enter a valid password.
OR

Don't have an account yet? Sign up

What does the exports shorthand refer to in CommonJS?

  1. A A reference to module.exports
  2. B A separate object unrelated to module.exports
  3. C The global scope
  4. D A reserved keyword
Answer

A reference to module.exports

exports initially points at module.exports, so adding properties works. Assigning a whole new value to exports breaks the link and exports nothing.

All NodeJS MCQs

Login to manage your account

Please enter a valid email address.
Forgot Password?
Please enter a valid password.
OR

Don't have an account yet? Sign up as