Answers for "How can I print multiple arrays on separate lines using same console.log?"

0

How can I print multiple arrays on separate lines using same console.log?

var a = [2, 4];

var b = [5, 6];

console.log('',a,'\n',b)
Posted by: Guest on December-03-2020

Code answers related to "How can I print multiple arrays on separate lines using same console.log?"

Browse Popular Code Answers by Language