This website collects cookies to deliver better user experience
let a = b || c;
b
a
c
??
a = b ?? c;
if(b == null) { a = c } else { a = b }
int? val = input ?? throw new Exception("'input' cannot be null");
int? requiredValue = userInput ?? -1;
int? a = 1; int? b = null; int? c = 3; int? d = a ?? b ?? c; Console.Write(d); // 1
a ?? (b ?? c) a ?? (null ?? 3) a ?? 3 1 ?? 3 1
46
0