Neither of these methods, nor the DOM itself, are part of the JS language
standard - you might be thinking of the HTML standard.

On Wed, Nov 28, 2018 at 11:28 AM manuelbarzi <[email protected]> wrote:

> make it shorter, simpler and more handy
>
> deprecate this
> ```
> EventTarget.addEventListener(...)
> EventTarget.removeEventListener(...)
> ```
>
> in pro of
> ```
> EventTarget.on(...)
> EventTarget.off(...)
> ```
>
> make it easier, more intuitive and more readable
> ```
> button.on(‘click’, e => ...)
> form.on('submit', e => ...)
> document.on('DOMContentLoaded', () => ...)
> ...
> ```
>
> (and reduce code length)
> _______________________________________________
> es-discuss mailing list
> [email protected]
> https://mail.mozilla.org/listinfo/es-discuss
>
_______________________________________________
es-discuss mailing list
[email protected]
https://mail.mozilla.org/listinfo/es-discuss

Reply via email to