0
Can anyone help
I have a function trying to add options to a select tag from an array in JavaScript. When I run it there is an error on line 23 please help. https://code.sololearn.com/W2AaMN75GtTF/?ref=app
2 ответов
+ 3
Use
myFunction(arrTmp, "selRange"); //pass string
Instead of
myFunction(arrTmp, selRange);
0
That worked thanks for your advice