What is the alternative command used in Node for load()?
What is the alternative command used in Node for load()? Correct Answer require()
require() is used for including other javascript files. Use require() instead of load(). It loads and executes (only once) the named module, returning an object that contains its exported symbols.