I am aware that everything is an object in JavaScript but something struck me when i was using the console of Internet Explorer -F12 (Yes IE, not allowed to use other browsers)
If i type a sample array in the console as:
[1,2]
the output is
1,2{
0:1,
1:2
}
Does this mean that JavaScript converts Array into an Object with keys and values?