Eight Weeks of Prototype: Week 3, Prototype Data Types
Introduction
In this, the third article in the "Eight Weeks of Prototype" series, I will teach you about the different data types that can be used in Prototype (on top of the existing JavaScript data types).
The first data types we will look are the basic string and number types. Prototype extends these JavaScript types to give you more control over their behaviour.
Next we will look at the Enumerable class, which is used to manage a series of values. Once we have covered the way Enumerable works and is used, we will look at the Array and Hash data types, both of which are examples of an Enumerable type.
In this article I will assume you have read and understand the first two articles in this series.




