>
> - Incorrectly using "return" for those that don't fully understand TCP.
>

As an illustration, consider this case:

    element.onclick = (evt) => do {

        if (this.alreadyWaitingForAjaxResponse)
            return;

        this.startAnAjaxRequest();
    };

Presumably the early return will throw an exception, since the binding
context has exited before the event handler is called.  (Please correct me
if I'm wrong.)

kevin
_______________________________________________
es-discuss mailing list
[email protected]
https://mail.mozilla.org/listinfo/es-discuss

Reply via email to