Day 8: What is the value of "winner"?
What is the value of "winner"?
let points = 100;
let winner = false;
if (points > 90) {
let winner = true;
}
console.log(winner);
Comment your answer
What is the value of "winner"?
let points = 100;
let winner = false;
if (points > 90) {
let winner = true;
}
console.log(winner);
Comment your answer
Answers ( 2 )
D
The value of winner is false..