Skip to content

Instantly share code, notes, and snippets.

@Jagathishrex
Created November 17, 2019 12:22
Show Gist options
  • Save Jagathishrex/98b6856d4a162bd06fa966b60827a91f to your computer and use it in GitHub Desktop.
Save Jagathishrex/98b6856d4a162bd06fa966b60827a91f to your computer and use it in GitHub Desktop.
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