Skip to content

Commit 793ad4b

Browse files
authoredFeb 4, 2025
Merge branch 'master' into patch-1
2 parents eedc262 + a2b97b5 commit 793ad4b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎1-js/03-code-quality/06-polyfills/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ if (!Math.trunc) { // if no such function
7171
7272
JavaScript is a highly dynamic language. Scripts may add/modify any function, even built-in ones.
7373
74-
One interesting polyfill library is [core-js](https://github.com/zloirock/core-js), which supports a wide range of features and allows you to include only the specific ones you need.
74+
One interesting polyfill library is [core-js](https://github.com/zloirock/core-js), which supports a wide range of features and allows you to include only the ones you need.
7575
7676
## Summary
7777

‎1-js/06-advanced-functions/10-bind/5-question-use-bind/solution.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
The error occurs because `ask` gets functions `loginOk/loginFail` without the object.
2+
The error occurs because `askPassword` gets functions `loginOk/loginFail` without the object.
33

44
When it calls them, they naturally assume `this=undefined`.
55

0 commit comments

Comments
 (0)
Failed to load comments.