Addition (a+b)

<script>
var a = 2;
var b = 3;
var c = a + b;
console.log(c);
</script>
//Explanation
//Make variable “a” and give it a value (“2”)
var a = 2;
//Make variable “b” and give it a value (“3”)
var b = 3;
//Add “a” + “b” and store the result in “c”
var c = a + b;
//Print the result
console.log(c);