0
Why var is not working outside the scope?
Check the code.I assume var is behaving like let.It is not defining the variable outside the scope/function. https://code.sololearn.com/Wu5kwmDF2UKS/?ref=app
2 odpowiedzi
0
I suppose, It doesn't work, because variable not global. It is declared inside the function
0
You can use "const" or declare a variable outside of a function to fix your code, good luck:)