是长不是长 114 天前 TypeScript计算加法 type NumOrStr = number | string; function safeAdd(a: NumOrStr, b: NumOrStr): number { return Number(a) + Number(b); } console.log(s... # TypeScript