Description:
Definition of variables.
Syntax:
var name [, ...];
var name [ =
value [, ...]];
name |
Name of the variable |
value |
Value assigned into the variable |
Note:
Variables defined with
var in the procedure
are available only within the procedure.
In the VBScript language is used the statement for this purpose
Dim and
Set.
Using the new
JavaScript statements of the
Let and
Const types is not recommended to use in the in the PROMOTIC system because the scripts must be functional also in the Web browser. These new statements may malfunction in older Web browsers.
Example:
Select and copy to clipboard
// Definition of two variables
var nVar;
var nNum;
// Definition of two variables with assigned values
var nVar = 2;
var nNum = "text";