What is the result of the following code?
let a = true, b = false; let c = a && b || !a; console.log(c);
false
true
null
undefined