Skip to content

JavaScript Notes

KEYBOARD SHORTCUTS

Quick shortcut to open the console

Text Only
1
OPTION + COMMAND + J

Shortcut to comment and uncomment code blocks

Text Only
1
COMMAND + SHIFT + "/"

CONSOLE STYLES

How to use the console with color.

Text Only
1
console.log("%cHello, World", "color: blue; font-size: 40px");

Here is another example with color around values. Useful to highlight things you need to locate in the console.

Text Only
1
 var styles = "font-size: 40px; border-radius: 10px; border: 1px solid blue; background: pink; color: purple";