The call() method is a built-in JavaScript function method that allows you to call a function with a specific this context and individual arguments.
1.Syntax
- functionName → the function you want to invoke
- thisArg → the value of this inside the function
- arg1, arg2… → optional arguments passed individually
