This article has covered JavaScript object prototypes, including how prototype object chains allow objects to inherit features from one another, the prototype property and how it can be used to add methods to constructors, and other related topics....Try this: js const myDate = new Date(); let object = myDate;...Let's see: js const myDate = new Date(1995, 11, 17); console.log(myDate...