html
Will you be the chosen one, destined to wield the power of debugging? Or will you succumb to the darkness of infinite loops?
if (age > 18) {
console.log('I\'m a winner!');
} else {
console.log('Practice makes perfect!');
}
See Solution 1
const age = 25;
if (age > 25) {
console.log(true);
} else {
console.log(false);
}
See Solution 2
if (score > 100) {
console.log('I\'m a winner!');
} else {
console.log('Game Over');
}
See Solution 3