1-js/06-advanced-functions/10-bind: fix markup

This commit is contained in:
Alexey Pyltsyn 2019-05-03 14:38:31 +03:00 committed by GitHub
parent 042ebed10b
commit 940535897c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -100,7 +100,7 @@ The basic syntax is:
```js
// more complex syntax will be little later
let boundFunc = func.bind(context);
````
```
The result of `func.bind(context)` is a special function-like "exotic object", that is callable as function and transparently passes the call to `func` setting `this=context`.