Tagged: JS

group console logs in JavaScript

Group console.logs in JavaScript

If you find yourself trying to group multiple console.log() like this: Then allow me to show you a better alternative. You can use console.group() to mark the start of the group and console.groupEnd() to...