I know your browser console is full of messages because you are debugging something, and that creates a lot of noise. Now you are adding a new console.log, and you need it to stand out above the rest.
Maybe you are like facebook and just want to warn your users from pasting in code in the browser in social engineering attacks.
To style a console.log message use the %c
interpolation and pass it a css style. e.g.
console.log('%c%s', 'color:red;font-size:5em', alert)
In the example above %s
means inerpolate the object into the output string.
Compatibility: tested to work on Firefox, Chrome, and Safari.
h/t Dillon Hafer