JavaScript Editor Ajax toolkit     Ajax website 



Main Page

Declares a variable.

// Syntax for declaring a variable of global scope or function scope.
var name1 [: type1] [= value1] [, ... [, nameN [: typeN] [= valueN] ]]

// Syntax for declaring a variable field within a class.
 [attributes] [modifiers] var name1 [: type1] [= value1] [, ... [, nameN [: typeN] [= valueN].]]

Expand imageArguments

Expand imageRemarks

Expand imageExample

Expand imageRequirements

Expand imageSee Also



JavaScript Editor Ajax toolkit     Ajax website


©