QP School

Full Version: Additions with variables in JavaScript
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
var Num1 = 2;
var Num2 = 3;
var Res1 = Num1 + Num2;

document.write(Res1);