I have simple JavaScript question.
I have an array (xyz) of 9 objects (Cell), each with 2 properties (e,v).
Is there any easy way to check if all the values of one of the properties are false?
Something like:
var myArray = xyz[];
if(all myArray.e==false){
do this;
}
Thanks :D
Array[9]
0:Cell
e:false
v:"x"
1:Cell
2:Cell
3:Cell
4:Cell
...etc