Created
December 20, 2021 18:30
-
-
Save paladinescamila/be87067d71c00d0ada42fe0bcb85885d 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
let numbers = [17,15,31,5,56]; | |
// over20 = true | |
let over20 = numbers.some(n => n > 20); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment