Earlier quoted context omitted.
Exactly. Without new features and syntaxes people would still be doing MyClass.prototype.method = function () { } like idiots. Such a meaningless argument for preventing progress.
Nobody needs classes nor prototypes in JS. Objects + functions is more than enough. I stopped using these few years ago and miss nothing.
import * as fooNs from './foo'
fooNs.barBazQuuxFoo(foo, …)
vs foo.barBazQuux(…)