Comments
There are 2 kinds of comments, single line comments, and multiple line comments. Single line comments you don't need to end. They end when the line ends. Multiple line comments you need to end. Here is how you use single line comments.
// comments
Multiple line comments are used like this:
/* starts. These can
go on for multiple
lines. You have to end these. */
The */ ends the comment. I recommend you use comments. They are good for if you write something and then come back months later and aren't sure what certain things mean.
The next section is Object Hierarchy.
Back Homepage Event Handlers Next