Language GuideBuilt-in TypesArrayMethodspush_frontOn this pagepush_frontAdd a new element to the front of the array. [1,2,3].push_front(4); // [4,1,2,3] Syntax push_front(value) Returns The pushed element.