if(a == 1){
parameter = ['1','true','a'];
}else{
parameter = ['2','false','b'];
}
function run(a,b,c){
}
How can I pass an array as arguments to the function run
? I tried JSON.Stingify but it doesn't work as I'm still seeing the array bracket in my console.log()