I don't know how to describe this, but this doesn't error out in Javascript... but it doesn't mean its a good idea and that all versions of Javascript except it (or not).
Thoughts?
var r = 'r';
var t = 't';
var s = 's';
s = r = t;
// s = 't'
// r = 't'
// t = 't'
It doesn't seem standard and it may be harder for a developer to follow, but are there really any use cases for this?