Why var is not working outside the scope? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
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

28th Aug 2022, 7:03 AM
Riyad Rahman [π©]
Riyad Rahman [π©] - avatar
2 Answers
0
I suppose, It doesn't work, because variable not global. It is declared inside the function
29th Aug 2022, 2:27 PM
AjaraGuju
AjaraGuju - avatar
0
You can use "const" or declare a variable outside of a function to fix your code, good luck:)
29th Aug 2022, 2:29 PM
AjaraGuju
AjaraGuju - avatar