console.debug()
The console.debug()
method outputs a message to the console at the "debug" log level.
Syntax
debug(obj1)
debug(obj1, /* …, */ objN)
Parameters
obj1
…objN
- : A list of JavaScript objects to output. The string representations of each of these objects are appended together in the order listed and output to the console.
Return value
None undefined
.