Push

Easy
array
infer

Description:

Implement the generic version of Array.push

For example:

type Result = Push<[1, 2], '3'> // [1, 2, '3']

Code

Loading...