|
Microsoft® JScript var Statement |
Language Reference Version 1 |
Declares a variable.
var variable [ = value ] [, variable2 [ = value2], ...]
The var statement syntax has the following parts:
Part Description variable, variable2 The names of the variables being declared. value, value2 The initial value assigned to the variable.
Use the var statement to declare variables. These variables can be assigned values at declaration or later in your script. Examples of declaration follow:
var index; var name = "Thomas Jefferson"; var answer = 42, counter, numpages = 10;
© 1997 by Microsoft Corporation. All rights reserved.
See also:
| file: /Techref/inet/iis/jscript/htm/js770.htm, 2KB, , updated: 2008/2/1 12:45, local time: 2012/2/9 01:04,
38.107.179.230:LOG IN |
| ©2012 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://www.ecomorder.com/techref/inet/iis/jscript/htm/js770.htm"> var Statement</A> |
| Did you find what you needed? |
| ecomorder.com members can LOGIN to post questions, add public or private comments, links or even new pages(!). To start, fill out the form. |
|
Peter Todd has released source and sample projects for his artwork, including his 3d wireframe cube renderer for the PIC 18f6520 This includes examples of hardware developed with free software tools such as gEDA/gschem/PCB, SDCC, gputils and picp all on Linux. http://petertodd.ca/art/source-code/ |
.