Build a simple calculator that runs in the console. Create variables for numbers and perform operations on them:
let a = 15
let b = 4
console.log("Sum:", a + b)
console.log("Difference:", a - b)
console.log("Product:", a * b)
console.log("Quotient:", a / b)
Change the numbers and run again. This project combines variables, operators, and console output.