function a(fun) {
}
a(function(a, b, c) {
return a + b + c;
});
How can i access fun arguments and their count inside function a?
function a(fun) {
}
a(function(a, b, c) {
return a + b + c;
});
How can i access fun arguments and their count inside function a?