What value is obtained with the following code?
let A = true, B = false; let C = A || (B && A); console.log(C);
B
A
false
true