Source: How do I change the value of a global variable inside of a function
1 2 3 4 5 |
var maVariableGlobale = 0; function maFonction(){ maVariableGlobale = 1; } |
Le bloc-notes professionnel d'un développeur front-end senior
Source: How do I change the value of a global variable inside of a function
1 2 3 4 5 |
var maVariableGlobale = 0; function maFonction(){ maVariableGlobale = 1; } |