im trying to write grey ring functions but they have fixed # of parameters and i need variable #. do i have to just pass all args in 1 array or is there a better way
thats not what im asking i want write a function the example one that has parameters a, b, manyMoreArgs, where i can call the function with 2+ arguments, like for ex. call (fn) with inps [1] [2] [3] [4] [5] [6], where inside the function it would set a =1, b =2 and manyMoreArgs = [3, 4, 5, 6],,, or call (fn) with inps [1] [2] [3] [4] would set a = 1, b=2, manyMoreArgs = [3,4].