为什么在添加字符串和数字时没有类型警告(Typescript)

时间:2019-06-14 22:00:40

标签: 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 

0 个答案:

没有答案