Skip to content

Tag: ecmascript-6

destructing es6 in array push

i want to use something like destructing assignment in ES6 for having cleaner code but i dont know how to use it in something like pushing in array or anyway can is use it or something similar?. this sample code is in vue js: Answer Try this code: or this: And then you can remove unnecessary words, like this:

Why EventTarget subclass instances lose their names?

The current version of JavaScript implements EventTarget as a class instead of an interface, so you can create an instance of EventTarget with all the expected methods. I tried to copy/paste the EventTarget example in the console (on both Chrome and Firefox) but when I inspect the myEventTarget object (that i…