QP School

Full Version: JavaScript - Multiplications with expressions
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Code:
let a = 2;
let b = (2 * 2) * 2;

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