As for my knowledge, JavaScript has no function to check the index of a multidimensional array. You could do that manually: you declare the two values you want to find, then loop thorugh the array and check if the first and the second element of the current subarray match your condition...
...
OK, I think an example is needed, sorry for my horrible explanation!
function indexMultiDArray (myArr){
var check = ['n1','n2'];
var i=0;
for (i; i < myArr.length; i++){
if (myArr[i][0]===check[0] && myArr[i][1]===check[1]){
alert(myArr[i][0]+' '+myArr[i][1]);
}
}
}
Basically, you loop through it: if the first and the second element of the current couplet match the first and the second element of the check
couplet, you have it: do something with it ;)