21.
What will be the output of the following JavaScript code? Code: let x = 45; if (x % 2 === 0) { console.log("Even"); } else { console.log("Odd"); }