July 2008
Beginner
356 pages
6h 8m
English
Before diving into the object-oriented features of JavaScript, let's first take a look at some of the basics. This chapter walks you through:
+, -, delete, and typeofVariables are used to store data. When writing programs, it is convenient to use variables instead of the actual data, as it's much easier to write pi instead of 3.141592653589793 especially when it happens several times inside your program. The data stored in a variable can be changed after it was initially assigned, hence the name "variable". Variables ...
Read now
Unlock full access