I have a lot of .on()
methods that I'd like to chain and align. I'm afraid that the interpreter might insert a semicolon after a variable name in this example:
var foo = new Bar();
foo // Semicolon insertion here.
.on()
.on();
Is there a way to keep this structure, or should I avoid doing it? Thank you!