Skip to content

Instantly share code, notes, and snippets.

@Jagathishrex
Last active November 17, 2019 12:21
Show Gist options
  • Save Jagathishrex/8ce6233f08890538a265d2ceece3bcb1 to your computer and use it in GitHub Desktop.
Save Jagathishrex/8ce6233f08890538a265d2ceece3bcb1 to your computer and use it in GitHub Desktop.
var array = [11,2,3,4,5];
var isGreaterThanTen = array.every(function(item, index, array) {
let isLastIndex = index === array.length - 1;
if(isLastIndex === false) {
array[index + 1] += 10;
}
return item > 10;
});
console.log(isGreaterThanTen); // true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment