←
^
→
JavaScript
Variables
Are
untyped
.
Can
declare
and
initialize
on the same line:
var
message
= "
hello
";
var
i
=0, j=0, k=1;
Must declare before reading (writing OK in global scope, but
don't
)
José M. Vidal
.
18 of 65