Skip to content

Commit 85d07ab

Browse files
authored
Merge pull request #2914 from Rnbsov/patch-13
add missed ;
2 parents 68dea68 + da9c76f commit 85d07ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/99-js-misc/04-reference-type/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ If we put these operations on separate lines, then `this` will be lost for sure:
5959
let user = {
6060
name: "John",
6161
hi() { alert(this.name); }
62-
}
62+
};
6363

6464
*!*
6565
// split getting and calling the method in two lines

0 commit comments

Comments
 (0)