voidnull 与 undefined void函数没有返回值 function say_hello(name:string):void{ console.log(`hello ${name}`)}say_hello('xiaoming'); null 与 undefinedlet u:undefined = undefined;let n:null = null;let n1:string | null | undefined;n1 = undefined