// ...
/* ... */
/*
*/
+ - * / %
^
Math.sin( ), Math.cos( ), Math.log( ), Math.exp( ), Math.sqrt( ), Math.floor( )
Math.PI
Math.E
Math
var x;
var x = 0;
x = x + 1;
var x; x = 17;
"hi"
'hi'
\"
\'
\\
\n
"a" + "b"
ab
"foobar"[3]
b
"foobar".length
6
string.length
string.charCodeAt[index]
String
typeof(43*7)
Number
Number("42")
String(42)
alert("Hello World!");
var n = prompt("Enter your name");