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