Skip to content

Instantly share code, notes, and snippets.

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