What is the command used for debugging output in Node?
What is the command used for debugging output in Node? Correct Answer console.log(…);
Console.log() prints the content in the argument on to the output screen. Node defines console.log() for debugging output like browsers do.