The call() method calls a function with a given this value and arguments provided individually
1 | myFunction.call(thisArg[, arg1[, arg2[, ...]]]) |
The apply() method calls a function with a given this value and arguments provided as an array
1 | myFunction.apply(thisArg, [argsArray]) |
So both call and apply do similar job as to change the scope of function in which it gets executed (change this of function). So why exactly JavaScript has these 2 methods, one to pass array as an argument and another as the comma separated args. As per my experience in JavaScript I found few places where actually we can use apply but not call. May be you got some other examples also then please share. I would like to take one example here. Suppose we need to find out the min in a given array of integer (unsorted), what will be your approach? First approach we can think to search and find min or sort the array and find min. But if the question is, you have 5 numbers and find out the min of these 5 numbers, now can you think to use Math library (Math.min) in this case and find out min
1 2 | // we can pass individual numbers comma separated in Math.min and find out min easily Math.min(4,1,8,3,7) // 1 |
Now think about using array here.......??? can we pass array in this Math.min ? ..... Yes we can !
1 2 | var ar = [4,1,8,3,7]; Math.min.apply(undefined, ar) // 1 |
Now suppose if only call is available in javascript we can not achieve this using call
In ES6 there is one more way to achieve this. Spread/rest parameter
1 2 | var ar = [4,1,8,3,7]; Math.min(...ar) // 1 |
You also like to know about:
- Do you know what happens when you hit url www.goolge.com?
- Know about Debouncing & Throttling
- AngularJS advanced trick and techniques
- Restrict input to allow only required value (jQuery plugin for input type validation)
- Spread operator or Rest parameter or Ellipsis in JavaScript
- Why call and apply two methods available in JavaScript
- Automatic Form Input Validation for complete site
- Number of ways you can create function in JavaScript +what are they called
- JavaScript Native objects
- How to Create private function in JavaScript
- functions as first class object in JavaScript
- Object Oriented concept in JavaScript
- Advanced JavaScript questions
- One good way to declare Global Variables in JavaScript
- how to align elements in a row with equal space around
- Closures in JavaScript
- AJAX call in AngularJS for cross domain service using JSONP
- Cross Site Scripting in WCF Web Service. How to use AJAX in JavaScript to Get/Consume JSON from WCF in C#
- How to add AngularJS in rails application
- Git configuration all about
- Pass XML file in stored procedure as a input parameter from C#
- XML Parser in SQL Server (T-SQL), How to parse XML in SQL
- Wish your friend with your own words and love
- Create Message in Hindi by typing in Hinglish
- Convert Multiline Text Into Single Line for HTML page