What is the command used for debugging output in Node?
A
print();
B
console.log(…);
C
debug(…);
D
execute(…);
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.