javascript-questions icon indicating copy to clipboard operation
javascript-questions copied to clipboard

fix: correct answer in task 14 readme.md ru

Open front42 opened this issue 4 months ago • 0 comments

It should be formulated a little more precisely. There is no "base object", it doesn't matter whether the object is created via the literal notation {} or the new keyword - it will inherit from Object.prototype, respectively, having access to the prototype methods, such as toString, etc. A custom object without a prototype (“very plain” or “pure dictionary”) can be created via Object.create(null);

front42 avatar Sep 02 '25 21:09 front42