Is there a way to get new lines in console.log when printing multiple objects?
Suppose we have console.log(a,b,c) where a, b,
console.log(a,b,c)
a
b
I have no idea why this works in node but the following seems to do the trick:
console.log('',a,'\n',b,'\n',c)
compliments of theBlueFish