write in javascript please A cryptid is a legendary creature that, if it exists, is an animal rather than a monster or supernatural entity. For example, yetis, bigfoot, and chupacabras are all cryptids. Use Prototype inheritance to create a cryptid object and a derived bigfoot object. The Cryptid should have a name, a height, and an attack method that prints something like "Bob the generic cryptid, 7 feet tall, attacks with its special weapon!". The bigfoot should *also* have a shoe size, and its attack should print a message like "Barry the bigfoot, 8 feet tall, stomps you !" Write code to demonstrate that your prototypes are correct. You do not need to take user input. write in javascript please
write in javascript please
A cryptid is a legendary creature that, if it exists, is an animal rather than a monster or supernatural entity. For example, yetis, bigfoot, and chupacabras are all cryptids. Use Prototype inheritance to create a cryptid object and a derived bigfoot object. The Cryptid should have a name, a height, and an attack method that prints something like "Bob the generic cryptid, 7 feet tall, attacks with its special weapon!". The bigfoot should *also* have a shoe size, and its attack should print a message like "Barry the bigfoot, 8 feet tall, stomps you !"
Write code to demonstrate that your prototypes are correct. You do not need to take user input.
write in javascript please
Trending now
This is a popular solution!
Step by step
Solved in 4 steps with 2 images