跳至主要內容

联合类型

Entity小于 1 分钟

联合类型

// 联合类型
function test(type: string | number): string | number{
    if(typeof type == 'string'){
        return 'type of value is string';
    }else{
        return 123;
    }
}
console.log(test(123)); // output : 123
console.log(test('123')); // output : type of value is string 

类型断言