You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var Order = new Class.create();
Order.prototype = {
initialize : function(data){
},
// here arg3 and arg4 are optional parameter
submit : function(arg1,arg2,arg3,arg4){
console.log(arg1);
console.log(arg2);
console.log(arg3);
console.log(arg4);
}
};
above class is defined in some third party library and below is how i have wrap it.
is this correct way to do it ?
How to wrap function with multiple arguments where some arguments are optional ?
https://github.com/sstephenson/prototype/blob/d9411e5/src/prototype/lang/function.js#L337
Here is how i did it
above class is defined in some third party library and below is how i have wrap it.
is this correct way to do it ?
The text was updated successfully, but these errors were encountered: