Skip to content

Instantly share code, notes, and snippets.

@Polyrhythm
Created December 19, 2014 00:35
Show Gist options
  • Save Polyrhythm/d46f9cd72834453d5ab5 to your computer and use it in GitHub Desktop.
Save Polyrhythm/d46f9cd72834453d5ab5 to your computer and use it in GitHub Desktop.
var items = [{ sold: true}, {sold: false}, {sold: true}];
for (var i = 0; i < items.length; i++) {
if (items[i].sold) {
console.log('you done bought me');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment