Improved JavaScript Roadmap (#6779)
* - Fixed Spacing and EOL. - Fixed Wrong Spellings. - Improved Examples. * ## Adding Content for : - Add `apply()` - Add `bind()` - Add `call()`pull/6823/head^2
parent
90486c2369
commit
5c2cc7a6da
28 changed files with 79 additions and 50 deletions
@ -1 +1,7 @@ |
||||
# bind |
||||
# bind() |
||||
|
||||
`bind()` method creates a new function with a fixed this value. |
||||
|
||||
Visit the following resources to learn more: |
||||
|
||||
- [@article@Bind Method - MDN Docs](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/bind) |
||||
|
@ -1,8 +1,8 @@ |
||||
# TypeOf Operator |
||||
# `typeof` Operator |
||||
|
||||
You can use the typeOf operator to find the data type of a JavaScript variable. It returns a string indicating the type of provided operand's value. |
||||
|
||||
Visit the following resources to learn more: |
||||
|
||||
- [@article@Typeof Reference](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/typeof) |
||||
- [@article@Typeof Live Examples](https://www.w3schools.com/js/tryit.asp?filename=tryjs_typeof_all) |
||||
- [@article@typeof Reference](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/typeof) |
||||
- [@article@typeof Live Examples](https://www.w3schools.com/js/tryit.asp?filename=tryjs_typeof_all) |
||||
|
Loading…
Reference in new issue