Skip to content
Advertisement

How to call multi variable array in JS function?

I’m using this function to select one item in drop down menu:

JavaScript

Now I want to select multi item before “await this.select();” this step.

I tried to edit function like this:

JavaScript

but when I call this function to select multi item

JavaScript

it has error

Expected 0-1 arguments, but got 3

How do I fix this?

Advertisement

Answer

You can make a method take an arbitrary number of arguments using the spread syntax ...

JavaScript

So you could make your method take an arbitrary number of arrays and deconstruct them in a loop

JavaScript

So your final code would be

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement