So, I created a multidimensional array: (i.e. one with two sets of "coordinates")
var items = [[1,2],[3,4],[5,6]];
My site is under construction, and the array when it is loaded and what it contains is constantly changing, so I need to be able to dynamically view the contents of the array while the script is running.
So, I use this:
console.log(items);
to display it on the console. This gives me the following result:

So, is there any other way that I can make the console.logging equivalent of my array, but with a more readable output?
Sam_12345
source share