We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
It should be possible to use getters/setters. Main reason for doing it now is:
function A() {} A.prototype.x = 1; function B() {} B.prototype = new A(); new B().x
Which does not work now, because prototype is a regular property and updating it won't change the actual instance map.
prototype