coding tips

Small coding-related tips, first published on Coderwall.

Enhance your JavaScript console logging messages

Enhance your JavaScript console logging messages

I still remember the day when I discovered that there is a JavaScript console where I could display messages! It was such a relief not having to alert messages anymore, or using a DOM element to display them. But, what I didn’t know back then was that there are different ways to display messages in the console, apart from the well-known log() method.

Read more →