In Javascript it is possible to pass a function as an argument to another function just like we pass a normal variable to a function. Suppose i have a requirement that i want to call 2 functions one ...
What is The Rest Parameter ? The rest parameter in JavaScript allows a function to accept an indefinite number of arguments as an array. It is represented by three dots (…) followed by the parameter ...