What value is obtained when executing the following code?
let result = false;
if (5 > 3) {
result = true;
}
console.log(result);
What value is obtained when executing the following code?
let result = false;
if (5 > 3) {
result = true;
}
console.log(result);