Created
November 17, 2019 12:22
-
-
Save Jagathishrex/98b6856d4a162bd06fa966b60827a91f 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 arr = [false, false, true, true]; | |
var hasTrue = arr.some((item, index, arr) => { | |
arr.pop(); | |
return item; | |
}); | |
console.log(hasTrue); // false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment