Skip to content

Instantly share code, notes, and snippets.

@TexRx
Forked from ondrek/iteration.js
Created September 3, 2013 13:18
Show Gist options
  • Save TexRx/6423792 to your computer and use it in GitHub Desktop.
Save TexRx/6423792 to your computer and use it in GitHub Desktop.
function iterateArrayToFirstResult(arr){
loop: {
for (var i=0; i<arr.length; i++) {
if (arr[i]==42) {
console.log('You just found answer to the ultimate question of Life');
break loop;
}
console.log('Your array havent number 42');
}
}
}
iterateArrayToFirstResult([2,3,42,5,6]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment