0
What are the Scopes of variable in javscript
JavaScript variable s
2 odpowiedzi
0
global: any variable declared outside of a function
local: variable access only within the function, and make sure to use the "var" if you don't it'll become a global variable