I am printing 2d arrays to the node terminal window but the width causes them to wrap across multiple lines. How can I change the width of the node print area? This is not solved by changing the terminal window columns or rows. https://i.sstatic.net/XCWTT.png. Update: The problem is the printing of an array with node. If I print one string it will print a longer width so how do I change how node is giving arrays a default width of some kind regardless of number of elements?
For example:
console.log([1,2,3,4,5,6,7,8,9,10]);
will print
[
1, 2, 3, 4, 5,
6, 7, 8, 9, 10
];
Instead of putting it all on one line in node.
