TypeScript

TypeScript等值缩小

2023-01-03  本文已影响0人  我的袜子都是洞

TypeScript等值缩小

function example (x: string | number,y: string | boolean) {
    if (x === y) {
        x.toUpperCase();
        y.toUpperCase();
    } else {
        console.log(x);
        console.log(y);
    }
}

出去变量中null的情况:

function printAll(strs: string | string[] | null) {
    if (strs !== null) { // 去除null
        if (typeof strs === "object") {
            for (const s of strs) {
                console.log(s);
            }
        }
    }
}
上一篇下一篇

猜你喜欢

热点阅读