Example
Resulting value of
x
Resulting value of
y
var x = 8;
var y = x;
8
8
var x = "ab";
var y = x;
ab
ab