Final graded quiz: Programming with JavaScript
What will be the output of the following JavaScript?
const a = true;
if(!a) {
console.log("Green");
} else {
console.log("Blue");
}
Green
Blue
Nothing
What will be the output of the following JavaScript?
var x = true;
x = 23;
...
eplus.dev2 min read