javascript prependitem to array code example Example: javascript prepend element to array var a = [1, 2, 3, 4]; a.unshift(0); a; // => [0, 1, 2, 3, 4]