Skip to content

Latest commit

 

History

History
12 lines (7 loc) · 2.15 KB

File metadata and controls

12 lines (7 loc) · 2.15 KB

Concat easy #array

by Andrey Krasovsky @bre30kra69cs

Take the Challenge    简体中文 日本語 한국어

Implement the JavaScript Array.concat function in the type system. A type takes the two arguments. The output should be a new array that includes inputs in ltr order

For example:

type Result = Concat<[1], [2]> // expected to be [1, 2]

Back Share your Solutions Check out Solutions

Related Challenges

3057・Push 3060・Unshift