node.js数组的indexOf在不应该返回-1时返回-1

时间:2015-06-16 15:22:10

标签: javascript node.js

由于某种原因,我的下面的代码返回-1时,它的数字不在数组中,见下文:

for(var a in connectedSockets){
    console.log(connectionidArray);
    console.log(connectedSockets[a].userid); 
    console.log(connectionidArray.indexOf(connectedSockets[a].userid));
}

给出输出:

[ 6 ]
2
-1
[ 6 ]
6
-1

所以第二次肯定会回归0?

0 个答案:

没有答案