var idstore = new Array();
var item1 = ["display1, display2, display3, display4"];
var item2 = ["display1, display2, display3, display5"];
idstore.push(item1);
idstore.push(item2);
alert(idstore);
my intention is to make a array contain my name , and sometimes the name will be duplicate , how do i make the array check if the array had the same name ?. so mean if i have display1 on my idstore and i push item2 into it , it will recognize that idstore have display1 and dont duplicate same array name.