Skip to content
In javascript arrays use numbered indexes. They don't have named indexes because javascript does not support associative arrays.
In javascript object use name indexes.
You should use objects when you want the element names to be strings (text).
You should use arrays when you want the element names to be numbers.
... Read More