Skip to content

Instantly share code, notes, and snippets.

@ramazankanbur
Created November 10, 2019 15:25
Show Gist options
  • Save ramazankanbur/d16387affdb64c261927fcc833edb493 to your computer and use it in GitHub Desktop.
Save ramazankanbur/d16387affdb64c261927fcc833edb493 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.some(function(computer){
return computer.ram > 16;
});
console.log(result);
//output
true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment