Conditionals allow us to make decisions in code based on conditions. They take the form of 1, if, else if, and else statements. For instance; let num = 10; if (num > 0) { console.log("Number is positive"); } else if (num < 0) { console.log("Number is...