How to create an empty 2d array in javascript? below is an example of what I want to create
[[1, a, c], [2, d, e], [3, w, e]];
I just want to create a empty 2d array. Note I dont know any of the values and I dont know the size of array:
var a= [][] ??