Language documentation | Contents | Index |
Variables are declared using the "var" keyword. All non-initialized variables will be automatically initialized to the number data type and will have the null value (0). |
var x; var y,z; var a,b="test",c=0,d=new SomeClass(); var arr=[1,2,3]; var[] arr; |
Documented by Eduard Suica, generation time: Sun Jan 27 18:15:21 2013 GMT | (c)2013 Devronium Applications |