Prototypes
Prototypes are a way to make our code more efficient, especially when using constructors. Take the following code for example… Imagine we have one thousand animals. When we use the “new” keyword, the data basically gets copied to the new object. So we would create one thousand grunt functions. Maybe

