how to get function parameters in javascript code example
Example 1: js array as parameter
function myFunction(a, b, c) {//number of parameters should match number of items in your array
//simple use example
console.log("a: " + a);
console.log("b: " + b);
console.log("c: " + c);
}
var myArray = [1, -3, "Hello"];//define your array
myFunction.apply(this, myArray);//call function
Example 2: how to create a function with parameters in JavaScript
function name(param, param2, param3) {
}