Why does this not work??
I just want to add stuff to my array without specifying a key
Code: Select all
var somearray = new Array();
somearrayї] = 'some value';
somearrayї] = 'another value';
//This also fails
somearray += 'added value';