I want to create array once and then just push values to it with any index , but i get Cannot read property 'push' of undefined
error
I have following scenario
var neg = [];
I want to use push randomly with any index
neg[0].push([1,2]);
or
neg[22].push([1,2]);
right now I want to define manually like neg[0] = [];
, Is there any one way where i can just push to any index i want ?