The bind() method creates a new function that, when called, has its this keyword set to the provided value.
Unlike call() and apply(), bind() does not immediately invoke the function.
1.Syntax
- functionName → the original function
- thisArg → value to bind as this inside the function
- arg1, arg2… → optional arguments to preset (partial application)
