Variables in JavaScript
By: aathishankaran in JavaScript Tutorials on 2007-03-21
A variable is the name given to a location in a computer's memory where data is stored.
The name of a JavaScript variable comprises one or more letters, digits, or underscores but cannot begin with a digit. Digits include 0 through 9. Letters include all uppercase characters, A through Z, and all lower case characters, a through z.
Declaring Variables
To let JavaScript know you are going to use an identifier as a variable, you must first declare it. To declare variables in JavaScript, use the keyword var followed by the new variable name. This action reserves the name as a variable to be used as a storage area for whatever data you might want to hold with it. In the examples that follow, notice that you can also declare more than one variable at a time by using a comma between variable names:
var internetAddress
var n
var i, j, k
var isMouseOverLink, helloMessage
Once a variable is declared, it is then ready to be filled with its first value. This initializing is done with the assignment operator, =. You can initialize a variable at the same time it is declared or at any point thereafter in your script. Assigning a value when the variable is declared can help you remember what type of value you originally meant the variable to hold.
Variable Types
When storing a piece of data (more commonly known as a value), JavaScript automatically categorizes it as one of the five JavaScript data types.
Scope of Variables
The scope of a variable refers to the area or areas within a program where a variable can be referenced. Suppose you embed one script in the head f an HTML document and another script (using another set of script tags) in the body of the same HTML document.
Local: A variable declared inside a function is local in scope. Only that function has access to the value that the variable holds. Each time the function is called, the variable is created. Likewise, each time the function ends, the variable is destroyed.
Another function can also declare a variable with the same name, but JavaScript considers it a different variable and does not address the same block of memory.
Global: If you want more than one function to share a variable, you declare the variable outside of any functions (but, of course, inside the <SCRIPT> tags). With this method, any part of your application, including all functions, can share one instance of a variable. I recommend that you declare global.
Constants
JavaScript does not supply any built-in constants. You could call true and false constants, but Netscape really categorizes them as keywords. A constant holds the same value throughout an application so that you can be sure it always carries the same value. Netscape might find a need for constants in the future, but for now, it works fine without them.
Add Comment
This policy contains information about your privacy. By posting, you are declaring that you understand this policy:
- Your name, rating, website address, town, country, state and comment will be publicly displayed if entered.
- Aside from the data entered into these form fields, other stored data about your comment will include:
- Your IP address (not displayed)
- The time/date of your submission (displayed)
- Your email address will not be shared. It is collected for only two reasons:
- Administrative purposes, should a need to contact you arise.
- To inform you of new comments, should you subscribe to receive notifications.
- A cookie may be set on your computer. This is used to remember your inputs. It will expire by itself.
This policy is subject to change at any time and without notice.
These terms and conditions contain rules about posting comments. By submitting a comment, you are declaring that you agree with these rules:
- Although the administrator will attempt to moderate comments, it is impossible for every comment to have been moderated at any given time.
- You acknowledge that all comments express the views and opinions of the original author and not those of the administrator.
- You agree not to post any material which is knowingly false, obscene, hateful, threatening, harassing or invasive of a person's privacy.
- The administrator has the right to edit, move or remove any comment for any reason and without notice.
Failure to comply with these rules may result in being banned from submitting further comments.
These terms and conditions are subject to change at any time and without notice.
Comments