Question: here are three kinds of Node.js modules: file-based modules, core modules, and external node_modules. Which one of them is not shipped with Node.js server when
here are three kinds of Node.js modules: file-based modules, core modules, and external node_modules. Which one of them is not shipped with Node.js server when you install your Node.js on your computer?
| A. | file-based modules | |||||||||||||
| B. | core modules | |||||||||||||
| C. | external node_modules | |||||||||||||
| D. | none of the above 2. Given the code below, what will be the output? var util = require('util'); var school = 'Wake Tech'; var population = 5899; util.log(util.format('%s has %d students', school, population));
|
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
