If you need to group console log's together you can use console.group like so:
console.group()
for(var i=0; i < 5; i++){ console.log('these will be grouped') }
console.groupEnd()

If you need to group console log's together you can use console.group like so:
console.group()
for(var i=0; i < 5; i++){ console.log('these will be grouped') }
console.groupEnd()
