I have been reading online and some places say it isn\'t possible, some say it is and then give an example and others refute the example, etc.
How do I dec
Two-liner:
var a = []; while(a.push([]) < 10);
It will generate an array a of the length 10, filled with arrays. (Push adds an element to an array and returns the new length)