What value is obtained with the following code?
let i = true, j = false; let k = i && (j || i); console.log(k);
true
false
j
i