Skip to content

Commit 90157f2

Browse files
authored
Стиль кода
1 parent 1399601 commit 90157f2

File tree

1 file changed

+2
-0
lines changed
  • 1-js/08-prototypes/01-prototype-inheritance

1 file changed

+2
-0
lines changed

1-js/08-prototypes/01-prototype-inheritance/article.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
let animal = {
2323
eats: true
2424
};
25+
2526
let rabbit = {
2627
jumps: true
2728
};
@@ -39,6 +40,7 @@ rabbit.__proto__ = animal;
3940
let animal = {
4041
eats: true
4142
};
43+
4244
let rabbit = {
4345
jumps: true
4446
};

0 commit comments

Comments
 (0)