Nexus,
неа, ключ-число и индекс это строка на самом деле:
var arrayObject = { 0: 'a', 1: 'b', 2: 'c'};
for (var key in arrayObject) console.log('key:', key, 'type:', typeof key);
var objectArray = ['c', 'd', 'e'];
for (var index in objectArray) console.log('index:', index, 'type:', typeof index);