As each programming language is different and my experience with Javascript is on basic level, I would like to know, how multiple variable assignments in one row are evaluat
a=b=c=d=e=f=g=h=4; // all get to be 4
a=b=c=d=e=f=g=h={ p1:"1", p2:"2" }; // same object for all
a.p3 = "3";
console.log((a==b && b==c && c==d && d==e), f); // condition is true, f is now
// {
// p1:"1",
// p2:"2",
// p3:"3"
// }