Skip to content

Commit cdce78c

Browse files
authored
Update Exercise46.js
1 parent 277a3c6 commit cdce78c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lesson07/Exercise46/Exercise46.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ class Food {
1515
// Food('burger', 1000, 9);
1616
// TypeError: Class constructor Food2 cannot be invoked without 'new'
1717
let friedChicken = new Food('fried chicken', 520, 5);
18-
console.log(burger.description());
18+
console.log(friedChicken.description());
1919

20-
console.log(Food.getCalories(friedChicken)); /// 520
20+
console.log(Food.getCalories(friedChicken)); /// 520

0 commit comments

Comments
 (0)