javascript-questions
javascript-questions copied to clipboard
fix: correct answer in task 14 readme.md ru
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);