Skip to content

Commit 8d3f8da

Browse files
Merge pull request ryanmcdermott#56 from sney2002/patch-1
use this to access object methods
2 parents ec8fd24 + 8135d47 commit 8d3f8da

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1918,9 +1918,9 @@ class PerformanceReview {
19181918
}
19191919

19201920
perfReview() {
1921-
getPeerReviews();
1922-
getManagerReview();
1923-
getSelfReview();
1921+
this.getPeerReviews();
1922+
this.getManagerReview();
1923+
this.getSelfReview();
19241924
}
19251925

19261926
getManagerReview() {
@@ -1944,9 +1944,9 @@ class PerformanceReview {
19441944
}
19451945

19461946
perfReview() {
1947-
getPeerReviews();
1948-
getManagerReview();
1949-
getSelfReview();
1947+
this.getPeerReviews();
1948+
this.getManagerReview();
1949+
this.getSelfReview();
19501950
}
19511951

19521952
getPeerReviews() {

0 commit comments

Comments
 (0)