QP School

Full Version: JavaScript - Additions with expressions
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Code:
let a = 3;
let x = (100 + 50) + a;

document.getElementById("demo").innerHTML = x;