Console - Log Function
Console - Log Function
Functions
in JavaScript
[ Don’t Miss It ]
www.scribbler.live
console.log()
The most common method for
displaying messages and variables.
console.error()
Outputs an error message to the
console. Useful for indicating issues or
errors in the code.
console.warn()
Displays a warning message. Great for
highlighting potential issues that aren't
errors.
console.table()
Displays tabular data as a table. Ideal
for visualizing arrays or objects in a
structured format.
console.dir()
Displays an interactive list of the
properties of the specified JavaScript
object.
Scribbler.live
Free and Open Interface to
experiment JavaScript