How to pass multiple parameters in javascript function
In the article , you will learn how to pass multiple parameters in javascript function by using spread operator.
Example of spread operator
function myFunction(...value) { document.write(value); } myFunction(1,2,3,4,5);Try it Yourself »
save
listen
AI Answer
How to pass multiple parameters in javascript function
0
In the article , you will learn how to pass multiple parameters in javascript function by…
asked
Apu
0 answers
2915
In the article , you will learn how to pass multiple parameters in javascript function by…
Answer Link
answered
Apu