I want to learn more about what I just discovered when playing with variables. I think I found something called assigned by value or reference, but the examples on Stackoverflow are complicated using "objects", which I have not learned yet, so I am still unsure about below.
var a = 12;
var b = a;
a // 12
b // 12
a = 15;
a // 15
b //12