Node Module System Flashcards

1
Q

What is a JavaScript module?

A

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

__filename, __dirname, module, exports(shorthand for module.exports), require

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

Truly global variables in Node.js

A

process, console, global, URL

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