Tag Archives: JavaScript

Lack of sleep() in Javascript

I get it. I really do. Javascript is intended to work in a (mostly) single threaded way and allowing it to sleep could gum things up tremendously. Reading that and similar links has been beneficial and I’ll be making time … Continue reading

Posted in Software | Tagged , , , | Leave a comment

Multidimensional Arrays in Javascript

Defining arrays in Javascript turns out to be a bit tricky. You can’t just predeclare the dimensions, you have to initiate them by defining the actual values for each element, dimension by dimension. For a one-dimensional array with three elements … Continue reading

Posted in Software | Tagged , , | 2 Comments