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