QP School

Full Version: JavaScript - Divisions with variables
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
let a = 4;
let b = 2;
let c = a / b;

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