I have been reading that in Javascript :
- Everything is an object (except primitives such as number,string, boolean, null & undefined)
- Objects can be treated as associative arrays.
From what I conclude, Array.isArray() should return true for everything (with primitive exceptions aforementioned). What wrong did I understand ?
Thanks !