- 1
Как сделать глобальной переменную, которая находится в функции? #js
#javascript Как сделать глобальной переменную, которая находится в функции?
10 Respuestas
+ 7
don't use the var keyword then it will leak the var from the function scope to the global scope.
edit: this is not recommended method if possible declare variables with var keyword.
https://code.sololearn.com/Wr989n0MDAHh/?ref=app
+ 7
really odd.. works fine for me.
+ 7
i didn't know assigning console to a var will fail on es5 your android may be 4.4.4 kitkat or lower i guess.
check now and speak...
+ 6
web codes are processed on your mobile device not on server.
+ 5
translation: How do I make a global variable that is in a function? #js
+ 5
@AxReal
using var keyword inside the function will make the var available just to the function scope and not global scope.
try my code declare the var hi in function you will understand.
+ 5
lol
+ 1
yes!
+ 1
заюзай var.
var a = 1;
var сделает переменную доступной вне функции. //не уверен, что это ещё работает.
но лучше возвратить переменную.
var i = 1;
function test(){
var i = 2;
return i;
}
i = test();