Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion console.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,4 +99,10 @@ console.count("This was called so many times")
console.assert(false, "This is an error!")

// View all the properties of a specified JavaScript objec (ex: DOM object)
console.dir(document)
console.dir(document)

// Debugging
console.debug("This is debug!");

// Clear the console
console.clear();