Example Resulting value of x Resulting value of y
var x = 5;
var y = 8;
y += x;
5 13
var x = "a";
var y = "b";
y += x;
a ba