0% found this document useful (0 votes)
26 views9 pages

Console - Log Function

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
26 views9 pages

Console - Log Function

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 9

Console

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.

Useful for inspecting objects in detail.


console.group() /
console.groupEnd()
Groups together console outputs,
making it easier to organize and read
related logs.
console.time() /
console.timeEnd()
Starts and stops a timer, useful for
tracking how long a process takes.
Keep Exploring
Javascript
with us!
Share this with a friend who needs it and
make sure to practice these in scribbler.

Scribbler.live
Free and Open Interface to
experiment JavaScript

You might also like