Skip to content

Instantly share code, notes, and snippets.

@ramazankanbur
Created November 10, 2019 15:23
Show Gist options
  • Save ramazankanbur/60c4c8944822953fd5926afd92b69f6b to your computer and use it in GitHub Desktop.
Save ramazankanbur/60c4c8944822953fd5926afd92b69f6b to your computer and use it in GitHub Desktop.
var computers = [
{ name: 'Apple', ram: 24 },
{ name: 'Compaq', ram: 4 },
{ name: 'Acer', ram: 32 }
];
var result = computers.every(function(computer){
return computer.ram > 16;
});
console.log(result);
//output
false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment