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
No responses yet.