A linkage of series of prototype objects is called as ________
(a) prototype stack
(b) prototype chain
(c) prototype class
(d) prototypes
(a) prototype stack
(b) prototype chain
(c) prototype class
(d) prototypes
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Right option is (b) prototype chain
Easy explanation: Consider an 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 prototype chain.