This page contains a series of JavaScript programs that you can use on-line or download and run on your own computer. These JavaScript programs should run in any modern web browser, and they can help build your own computer skills.
Click on “Details” for each program to learn about it or download a copy. Click on “Practice” or “Play” to use each program on-line.
MouseHit will help your improve your mouse clicking skills.
TypingTutor will help you improve your typing.
CopyPasteTutor: Details Practice
CopyPasteTutor will help you practice copying and pasting text.
Simple 1 Bit Computer: Details Practice
Simplest Computer possible – One bit instruction set (0 or 1). The “0” instruction turns the light off. The “1” instruction turns the light off. A program for this computer is just a series of 0’s and 1’s.
Simple 1 Bit Computer Language: Details Practice
This is the same “Simplest Computer” possible, but with a “computer language” that understands “source code” containing the words “on” and “off” instead of “1′ and “0”.
Simple 3 Bit Color Computer: Details Practice
Program a colored light – Three bit instructions specify red, green, and blue. Each “0” in the instruction turns that color off. Each “1” in the instruction turns that color on. Can be programmed in binary or with a simple language (r,g,b,y,m,c,b,w).
InkSpill is a simple game written in JavaScript.