Fungsi JavaScript dengan parameter array

const args = ['test0','test1','test2'];
function call_me(param1, param2, param3){
  //
}
call_me.apply(this, args);
Outrageous Ocelot