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