Tag: tricks

  • How to save time typing console.log() statements in Javascript?

    For a javascript developer , console.log() statement is a great companion. It helps debugging issues fast. But typing this statement can be time consuming. There are two tricks to help in reducing time , typing this statement. Trick 1: Enclose variables to print in curly braces {} . Let’s say you want to print the…