What is the performance difference between retrieving the value by key in a JavaScript object vs iterating over an array of individual JavaScript objects?
associative arrays are much slower then arrays with numbered indexes, because associative arrays work by doing string comparisons, which are much, much slower then number comparisons!