Created
June 15, 2016 20:08
-
-
Save aebsr/f660b807014b210919b3716ad5522fa0 to your computer and use it in GitHub Desktop.
The Choice Is Yours
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const tracks = [ 'train' ]; | |
for (let i = 0; i < tracks.length; i++) { | |
if (tracks[i] === 'train') { | |
console.log('Pick it up'); | |
console.log('Pick it up'); | |
alert('Back on the scene, crispy ’n clean'); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment