I need to call a function in javaScript
service.call(row.operation, args.arg1, args.arg2, args.arg3,...,argN )
And I have array of the parameters of random length. How to pass this array to a function as a parameter list?
UPDATE
I can't change call method signature. 'Call' method is custom, not standard.