JavaScript newbie - what is console.log() actually for??
I Built a JavaScript Console
jquery - Console.log messages not showing up in Chrome's javascript console? - Stack Overflow
Difference between console.log() and console.debug()?
Videos
Sorry this may be a dumb question- but Iโm learning JavaScript. When do you ACTUALLY need console.log() ? Iโm confused about it since we can use Var or let for stating variables . Whatโs the actual importance of console.log()
I needed a convenient way to quickly run JavaScript code without having to open VSCode or a terminal. Other alternatives I found were either too bloated with a heavy focus on HTML and CSS, or too basic with unreliable logging. So, I decided to build my own JavaScript console using the same editor that VSCode uses, which provides a lot of handy features right out of the box.
Make sure you have the console showing and that it is showing "All".
The cursor is on the button to hide/show the console.
Update: In newer versions of Chrome, you need to click the filter icon, then make sure "All" is selected.

I've just had the same problem and found this question when trying to find an answer.
What fixed this for me was disabling firebug lite in chrome. It was swallowing all console messages.
Technically console.log console.debug and console.info are identical
However the way they display the data is little different. console.debug is not visible by default in the browser's JS console. It can be enabled by using the console's filter options.
console.log Black color text with no icon
console.info Blue color text with icon
console.debug Pure black color text
console.warn Yellow color text with icon
console.error Red Color text with icon
Copyvar playerOne = 120;
var playerTwo = 130;
var playerThree = 140;
var playerFour = 150;
var playerFive = 160;
console.log("Console.log" + " " + playerOne);
console.debug("Console.debug" + " " +playerTwo);
console.warn("Console.warn" + " " + playerThree);
console.info("Console.info" + " " + playerFour);
console.error("Console.error" + " " + playerFive);
Run code snippetEdit code snippet Hide Results Copy to answer Expand

For at least IE, Firefox and Chrome consoles, .debug() is just an alias for .log() added for improved compatibility
https://developer.mozilla.org/en-US/docs/Web/API/console
https://developers.google.com/chrome-developer-tools/docs/console-api#consoledebugobject_object
https://msdn.microsoft.com/en-us/library/ie/hh772183(v=vs.85).aspx