I want a way to pass multiple arrays as function parameters (dynamically), and store their values into a single array (I know how to do this part) as demonstrated bellow:
function arrayfunction (/*arrays go here*/) {
var allArrays = []
}
arrayfunction([a,b,c],[d,e,f],[h,i,j],...);
how can that be done?