let a: string | null = null; let b: number | undefined = undefined; a = "hello"; b = 42; console.log(a, b);