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
You need to use \n inside the console.log like this:
\n
console.log
console.log('one','\n','two');