What value is obtained when executing the following code?
let a = true; let b = !a; console.log(b);
true
false
undefined
Error