Why do instance fields belong to the instances instead of their prototype? – Javascript
In the JavaScript class syntax introduced in ES6 (static properties are accessible from the class, instance properties are accessible from the instances): static fields belong to the class; static methods belong to the class; instance methods belong to the instances’…