Javascript Array second()

Description

Javascript Array second()

Array.prototype.second = function() {
  return this[1];
}



PreviousNext

Related