What is the difference between using call and apply to invoke a function?
call
apply
var func = function() { alert(\'hello!\'); }; >
var func = function() { alert(\'hello!\'); };
Difference between these to methods are, how you want to pass the parameters.
“A for array and C for comma” is a handy mnemonic.