Tag Archives: null

Javascript Incrementing and Decrementing Suffix Tutorial

The recent Javascript Incrementing and Decrementing Primer Tutorial broached … prefix syntactical Javascript Incrementing and Decrementing of variables … and, today, we extend that to … suffix syntactical Javascript Incrementing and Decrementing of variables … and to … both … … Continue reading

Posted in eLearning, Event-Driven Programming, Tutorials | Tagged , , , , , , , , , , , , , , , , | Leave a comment

Javascript Incrementing and Decrementing Primer Tutorial

Sometimes writing Javascript code we’ve let code like … <script type=’text/javascript’> var counter=null; function initializeCounter() { counter=0; } function incrementCounter() { if (counter == null) { counter=0; } ++counter; } if (eval(Math.floor(Math.random() * 1746765765) % 2) == 1) { initializeCounter(); … Continue reading

Posted in eLearning, Tutorials | Tagged , , , , , , , , , , , , | Leave a comment