Evan Byrne's Writings

Class.js

JavaScript by nature does not have classes like other languages. This has been a source of frustration for developers trying to create complex applications. Class.js attempts to provide the JavaScript language with a basic class structure in under a kilobyte of code.

May 08, 2010

7

JavaScript setTimeout and setInterval

JavaScript has two functions that allow you to implement a delay before activating another function. In this article I will show you the difference between the setTimout and setInterval functions and how to use them.

Dec 22, 2009

0