Knowledge check - Conditionals and loops in Javascript
Based on the following code, what will print out when the variable i has the value 3 ?
if(i < 5) {
console.log("Hello");
} else {
console.log("Goodbye");
}
Hello
Goodbye
Based on the following code, what will print out when the variabl...
eplus.dev2 min read