Skip to content

Instantly share code, notes, and snippets.

@stefanledin
Created December 17, 2019 13:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stefanledin/adf3a518beed6e66cacbea029993ae20 to your computer and use it in GitHub Desktop.
Save stefanledin/adf3a518beed6e66cacbea029993ae20 to your computer and use it in GitHub Desktop.
var results = [
{
answer: "2",
question: "12"
},
{
answer: "1",
question: "13"
},
{
answer: "1",
question: "14"
},
];
console.log(results.filter(result => result.answer === '1').length);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment