Language GuideBuilt-in TypesArrayMethodspushOn this pagepushAdd a new element to the back of the array. [1,2,3].push(4); // [1,2,3,4] Syntax push(value) Returns The pushed element.