JS 2 Points Varibale sur les mêmes valeurs

// if you face a problem when you have tow varibales or objects pointing on the same values
//and when you change one of them the other one value changes you can solve it this way
// example :
var a = temp
var b = temp
//this will result on a and b having same refrence that make it mutable
var a = temp
var b = JSON.parse(JSON.stringify(temmp))
/*this should solve it */(●'◡'●)
Wa7ch Tennin