TIL how to colour console logs
Published on January 18, 2022
We can change the colour of log in console like this:
console.log('%c hey red text', 'color: red') console.log('%c hey green text', 'color: green')

console.log('%c hey red text', 'color: red') console.log('%c hey green text', 'color: green')