1let a = 2; 2let b = a ?? 3; 3print(b); 4a = null; 5b = a ?? 4; 6print(b); 7a = undefined; 8b = a ?? 5; 9print(b);