Skip to content

Instantly share code, notes, and snippets.

@scottsword
Last active August 29, 2015 14:18
Show Gist options
  • Save scottsword/38cf425d3b6a0dfbf113 to your computer and use it in GitHub Desktop.
Save scottsword/38cf425d3b6a0dfbf113 to your computer and use it in GitHub Desktop.
Contrived for loop
var rebels = ['Wedge', 'Leia', 'Luke', 'Han'];
for (var i = 0; i < rebels.length; i ++) {
if (rebels[i] === 'Luke') {
console.log('I have you now.');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment