点击运行
function swap
(tuple: [T, U]): [U, T] { return [tuple[1], tuple[0]]; } console.log(swap([7, 'seven'])); // ['seven', 7]
运行结果 :
正在执行...