Is it possible to assign to two variables in one statement?
E.g.
this.edge = this.side = null;
Is it possible to assign to two variables in one statement?
E.g.
this.edge = this.side = null;
Adding one line will not cost you much, just use:
this.edge = null;
this.side = null;