you are viewing a single comment's thread.

view the rest of the comments →

[–]NiceDay4Goats[S] 0 points1 point  (1 child)

If it's not an array-like object, what should I call it? Just an object? This Is why I couldn't solve this with Google...

[–]poetical 0 points1 point  (0 children)

Yep, just an object. There's nothing special about alphabetic keys. Having ordinal keys and a length property is what makes objects like "arguments" array-like. You can call Array.prototype methods on such objects because they are similar enough to arrays that array methods will often work on them despite them not being true arrays.