typescript WartoścNULL/未定义

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了typescript WartoścNULL/未定义相关的知识,希望对你有一定的参考价值。

// wartości null i undefined

function testUndef(test : null | number) {
    console.log('parametr test: ' + test);
}

// testUndef(); // błąd: wywołanie funkcji bez argumentów

let x : number | null;

x = 1;
x = undefined;
x = null;

以上是关于typescript WartoścNULL/未定义的主要内容,如果未能解决你的问题,请参考以下文章

typescript Właściwościopcjonalne

typescript Akcesorywłaściwości/物业配件

typescript Właściwościtylkodo odczytu

typescript 参数domyślne

typescript 参数domyślne

typescript TypywartościzwracaneprzezFunkcję