I have an array items. I need to make sure that in the current iteration of the loop I can safely call the next item of the array
for(var i = 0; i < items.length; ++i) {
  // do some stuff with current index e.g....
  item = items[i];
   // then do something with item @ i+1
   if(items[i+1]) {
      //do stuff 
   }
}
Is this how it is done or if not how/what would be the better way?
P.S. I do not want to do a bound check