Saturday, 8 October 2016

javascript - why does $.each() not work with arrays that have a string index in jquery?

version a:






var x = [];
x['abc'] = 'd';
x['xyz'] = 'abbb';
$.each(x, function(i, el) {
console.error(el);
});







does not work. No output in console see here:



How can I make version a work?

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...