node-module-system Flashcards

1
Q

What is a JavaScript module?

A

In JavaScript, a “module” is a single .js file.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What values are passed into a Node.js module’s local scope?

A
\_\_dirname
\_\_filename
exports
module
require()
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Give two examples of truly global variables in a Node.js program.

A
clearInterval
clearTimeout
console
process
global
How well did you know this?
1
Not at all
2
3
4
5
Perfectly