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
Without adding white space at start of new line:-
console.log("one\ntwo");
output:-
one
two
This will add white space at start of new line:-
console.log("one","\n","two");