Created
November 10, 2019 15:23
-
-
Save ramazankanbur/60c4c8944822953fd5926afd92b69f6b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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