var (let / const ) Variable Declaration Statements
Language Reference
Version 1

See Also


Description
Declares a variable.
Syntax
var variable [ = value ] [, variable2 [ = value2], ...]

let variable [ = value ] [, variable2 [ = value2], ...]

const variable [ = value ] [, variable2 [ = value2], ...]

The var, let, const 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.

In ES2015 and later, the following have been added to supplement var:

let variable [ = value ] [, variable2 [ = value2], ...]

The let statement also declares and (optionally) assigns a variable, but it will only be available inside the current block of the program. This is a true "local" variable. The advantage is that we can use the same variable name multiple places in the program without them interfering with each other. 1 2

const variable = value [, variable2 = value2, ...]

The const statement declares and (must) assign a constant value. It can not be changed or re-declared, but local variables can be created with the same name via the let statement. By convention, constants are named using all uppercase letters. 1

Remarks
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;

Also: Basic JavaScript Variables and scope



file: /Techref/inet/iis/jscript/htm/js770.htm, 4KB, , updated: 2020年1月5日 21:29, local time: 2025年9月5日 20:37,
40.74.122.252:LOG IN

©2025 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?
Please DO link to this page! Digg it! / MAKE!

<A HREF="http://techref.massmind.org/techref/inet/iis/jscript/htm/js770.htm"> var Statement</A>

After you find an appropriate page, you are invited to your to this massmind site! (posts will be visible only to you before review) Just type a nice message (short messages are blocked as spam) in the box and press the Post button. (HTML welcomed, but not the <A tag: Instead, use the link box to link to another page. A tutorial is available Members can login to post directly, become page editors, and be credited for their posts.


Link? Put it here:
if you want a response, please enter your email address:
Attn spammers: All posts are reviewed before being made visible to anyone other than the poster.
Did you find what you needed?

Welcome to massmind.org!

Welcome to techref.massmind.org!

.

AltStyle によって変換されたページ (->オリジナル) /