JavaScript runs in the browser and powers the interactive parts of the web. This first coding lesson keeps the idea simple: store a message, calculate a number, and show both on the page.
const message = "JavaScript runs in the browser";
const total = 5 * 3 + 2;
console.log(message, total);
Store text in introMessage and the calculation result in introNumber.