easy modeUnshift本页总览Unshift 实现类型版本的 Array.unshift。 type Result = Unshift<[1, 2], 0>; // [0, 1, 2] 答案 Detailstype Unshift<T extends readonly any[], U> = [U, ...T]