Result Size: 300 x 150
x
 
<!DOCTYPE html>
<html>
<body>
<h2>JavaScript Змінні</h2>
<p id="demo"></p>
<script>
var price1 = 5;
var price2 = 6;
var total = price1 + price2;
document.getElementById("demo").innerHTML =
"Підсумок є: " + total;
</script>
</body>
</html>