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