We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 277a3c6 commit cdce78cCopy full SHA for cdce78c
Lesson07/Exercise46/Exercise46.js
@@ -15,6 +15,6 @@ class Food {
15
// Food('burger', 1000, 9);
16
// TypeError: Class constructor Food2 cannot be invoked without 'new'
17
let friedChicken = new Food('fried chicken', 520, 5);
18
-console.log(burger.description());
+console.log(friedChicken.description());
19
20
-console.log(Food.getCalories(friedChicken)); /// 520
+console.log(Food.getCalories(friedChicken)); /// 520
0 commit comments