Skip to content

Instantly share code, notes, and snippets.

@Hunta88
Hunta88 / dinosaur.js
Last active August 22, 2022 14:25
What's incorrect about the findPopularDino() method in Park.js?
const Dinosaur = function (species, diet, guestsAttractedPerDay) {
this.species = species;
this.diet = diet;
this.guestsAttractedPerDay = guestsAttractedPerDay;
}
module.exports = Dinosaur;