Is there a way to dynamically pass multiple arrays as function parameters and then store their values into a single array? I already know how to accomplish the second part, as shown below:
function arrayfunction(/*arrays go here*/) {
var allArrays = []
}
arrayfunction([a,b,c],[d,e,f],[h,i,j],...);
Can you provide some guidance on how to achieve this?