Compared to the actual way of creating "classes" in Javascript as such:
function MyClass(){
}
MyClass.prototype.yada = function(){};
to the new ES6 class
class MyClass {
yada(){
}
}
Couldn't find any performance comparisions, but I'm really interested in __proto__/Object.setPrototypeOf inheritance than only the "class sugar" that ES6 offers.