QP School

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

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