Skip to content

Instantly share code, notes, and snippets.

@Jagathishrex
Created November 17, 2019 12:23
Show Gist options
  • Save Jagathishrex/d1e20c46fbd92d8ee3f59c293face8f8 to your computer and use it in GitHub Desktop.
Save Jagathishrex/d1e20c46fbd92d8ee3f59c293face8f8 to your computer and use it in GitHub Desktop.
var arr = [false,false];
let hasTrue = arr.some((item, index, arr) => {
arr.push(true);
return item;
});
console.log(hasTrue); // false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment