NEWS
Statische Variable in Funktionen
-
Hallo,
gibt es in js auch Statische Variable wie z.B. in Arduino C++?
Beispiel :function test(){ static let xyz_old if (xyz_old == 0){ xyz_old = 5 } else { if (xyz_old == 5){ xyz_old = 0 } } }
Vielen Dank
-
Gut gefallen hat mir
function countMyself() { // Check to see if the counter has been initialized if ( typeof countMyself.counter == 'undefined' ) { // It has not... perform the initialization countMyself.counter = 0; } // Do something stupid to indicate the value alert(++countMyself.counter); }