pluto yes.... you can brute force your way through all the elements using a basic iterator, i refered to this via the first post, though asking for a way to check all of them contradicts your post, no?
var arr = [1,2,5,6,9,4,2,0];
for(var i = 0; i < arr.length; i++) {
console.log(arr[i]);
}