我在这里有一些奇怪的js-source,它将字符串comap为 twodimensional 数组:
secret = new Array(2);
secret[0]= new Array(2);
secret[1]= new Array(2);
secret[0][0] = 'A';
secret[0][1] = 'B';
secret[1][0] = 'C';
secret[1][1] = 'D';
pwd=prompt("Password: ","");
if (pwd==secret){
alert("Right!");
}
else{
alert("Wrong!");
}
js如何进行比较?数组是转换为字符串还是反过来?
答案 0 :(得分:1)
数组被隐式转换为字符串"A,B,C,D"
。