let value: string | undefined | null = null;
console.log(typeof value);
value = 'hello';
value = undefined;
object string undefined