Skip to content

Instantly share code, notes, and snippets.

@svahora
Created August 9, 2015 16:42
Show Gist options
  • Save svahora/988d21b80c463935d35d to your computer and use it in GitHub Desktop.
Save svahora/988d21b80c463935d35d to your computer and use it in GitHub Desktop.
function every(collection, pre) {
for(x=0; x<collection.length; x++) {
return collection[x].hasOwnProperty(pre);
}
}
every([{'user': 'Tinky-Winky', 'sex': 'male'}, {'user': 'Dipsy', 'sex': 'male'}, {'user': 'Laa-Laa', 'sex': 'female'}, {'user': 'Po', 'sex': 'female'}], 'sex');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment