Skip to content

Instantly share code, notes, and snippets.

@martinsson
Created May 1, 2018 21:54
Show Gist options
  • Save martinsson/b11532a45a4e87edbffd931d380d94d3 to your computer and use it in GitHub Desktop.
Save martinsson/b11532a45a4e87edbffd931d380d94d3 to your computer and use it in GitHub Desktop.
Bug generator, while loop
let foundAnimal
let i = 0
while (i <= animals.length && !foundAnimal) {
if (animals[i].type === 'cat') {
foundAnimal = animals[i]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment