.push() : push some informatino into the array, a commend adds a single value on the tail .concat() : add more than a single value on the tail .unshift() : add value on the start point into the array .splice(index, howmany, element1, ..., elementN) : add value in somewhere in the middle of array. It changes the contents of an array by removing or replacing existing elements and/or adding new ele..