Skip to content

Latest commit

 

History

History
12 lines (7 loc) · 1.15 KB

File metadata and controls

12 lines (7 loc) · 1.15 KB

Unshift easy #array

by jiangshan @jiangshanmeta

Take the Challenge

Implement the type version of Array.unshift

For example

type Result = Unshift<[1, 2], 0> // [0, 1, 2,]

Back Share your Solutions Check out Solutions