var array = [1, 2, 3, 4, 5, 6]; array.pop(); console.log(array); //Output in console section: //[1, 2, 3, 4, 5]