Skip to content

Instantly share code, notes, and snippets.

@Jagathishrex
Created November 17, 2019 12:24
Show Gist options
  • Save Jagathishrex/f221144206d2ee8a05852b59d64da094 to your computer and use it in GitHub Desktop.
Save Jagathishrex/f221144206d2ee8a05852b59d64da094 to your computer and use it in GitHub Desktop.
var array = [false, false,false];
var hasTrue = array.some( function(item, index, array) {
let isLastIndex = index === array.length - 1;
if(isLastIndex === false) {
array[index + 1] = true;
}
return item;
});
console.log(hasTrue); // true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment