标签: typescript
为什么将字符串添加到数字类型时Typescript不会引发错误或警告?
我至少希望得到一个警告。
const x: number = 1 const y: string = "2" // why no warning or error here? const z: number = x + y; console.log(z) ==> 12