I am working with the groupBy function from the dataframe-js library.
I try to pass multiple arguments to the function (ie groupBy('col1', 'col2', 'col3')), however I don't know arguments in advance. I use the destructuring assignement: groupBy(...arrayOfcol). My problem is that this destructuring assignement is not IE compatible.
I don't have idea about using apply or call for this problem.
What can I use to replace the destructuring assignement for IE.
Thanks