diff --git a/console.js b/console.js index d381020..1d0ecdc 100644 --- a/console.js +++ b/console.js @@ -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) \ No newline at end of file +console.dir(document) + +// Debugging +console.debug("This is debug!"); + +// Clear the console +console.clear();