类似于any,但是更安全。需要通过类型范围缩小,才能使用 如:
const a: unknown = 10; if(typeof a === 'string'){ console.log(a.tolocalString) }
在上例中,只有string类型的a,才能被输出。