Skip to content

Latest commit

 

History

History
12 lines (7 loc) · 2.03 KB

File metadata and controls

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