Script expression syntax, assignment operator
Posted: 25 Nov 2013 22:16
Presently, these two statements are not equivalent:
a = (b = c);
a = b = c;
The latter generates a run-time error.
IMHO, this should be corrected so that they are equivalent. Thanks!
a = (b = c);
a = b = c;
The latter generates a run-time error.
IMHO, this should be corrected so that they are equivalent. Thanks!