Tips to save time writing console.log() in JavaScript
console.log() is of great help for debugging Javascript code .
But writing them is time consuming. You can save time by following these two tricks:
Enclose variables in curly braces :
console.log({input}) instead of console.log(“input”,input)
Create ...
vijaysrj.hashnode.dev1 min read