I\'d like to call a function using an array as parameters:
const x = [\'p0\', \'p1\', \'p2\']; call_me(x[0], x[1], x[2]); // I don\'t like it function call_
Why don't you pass the entire array and process it as needed inside the function?
var x = [ 'p0', 'p1', 'p2' ]; call_me(x); function call_me(params) { for (i=0; i