运行 ❯
拥有您
自己的 Node
服务器
×
更改方向
更改主题,暗/亮
转到 Spaces
function createPair<S, T>(v1: S, v2: T): [S, T] { return [v1, v2]; } console.log(createPair<string, number>('hello', 42)); // ['hello', 42]
['hello', 42]