We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e23cf96 commit 1dd8628Copy full SHA for 1dd8628
1 file changed
1-js/09-classes/02-class-inheritance/article.md
@@ -465,7 +465,7 @@ longEar.eat(); // Длинноух ест.
465
```js run
466
let animal = {
467
sayHi() {
468
- console.log(`Я животное`);
+ console.log("Я животное");
469
}
470
};
471
@@ -518,7 +518,7 @@ tree.sayHi(); // Я животное (?!?)
518
519
520
521
- eat: function() { // намеренно не пишем так, а не eat() { ...
+ eat: function() { // намеренно пишем так, а не eat() { ...
522
// ...
523
524
0 commit comments