Показать сообщение отдельно
  #2 (permalink)  
Старый 09.04.2013, 23:52
Аватар для Akalenik
Интересующийся
Отправить личное сообщение для Akalenik Посмотреть профиль Найти все сообщения от Akalenik
 
Регистрация: 05.03.2013
Сообщений: 20

Цитата:
Object.prototype is one of the rare objects that has no prototype: it does not inheritany properties. Other prototype objects are normal objects that do have a prototype. All of the built-in constructors (and most user-defined constructors) have a prototype that inherits from Object.prototype. For example, Date.prototype inherits properties from Object.prototype, so a Date object created by new Date() inherits properties from both Date.prototype and Object.prototype. This linked series of prototype objects is known as a prototype chain.
Это цитата из Фланагана по данному вопросу.
Ответить с цитированием