MCQOPTIONS
Saved Bookmarks
| 1. |
const pt1 = {}; const ob1 = Object.create(pt1); console.log( Object.getPrototypeOf(ob1) === pt1 );9.A linkage of series of prototype objects is called as : |
| A. | prototype stack |
| B. | prototype chain |
| C. | prototype class |
| D. | prototypes |
| Answer» C. prototype class | |