Skip to content

Latest commit

 

History

History
12 lines (7 loc) · 1.77 KB

File metadata and controls

12 lines (7 loc) · 1.77 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

Related Challenges

533・Concat 3057・Push