narrowing用于限定程式码某一区块中,限定它的型别

let foo: any
const func = () => {
// 检查字串(空字串需另外处理)、数字、布林
if (typeof foo === \'string\') {}
// 检查阵列
if (Array.isArray(foo)) {}
// 检查物件,是否包含特定key
if (\'key\' in foo) {}
}