4 Exist standard ECMAscript262 from Europe Commission . . .
7 <HEAD>JavaScript testing page
8 <script language="javascript">
15 <script language="javascript">
17 document.write("the call passed",i,"to the func",
23 Ways to create I/O func: document.write() ; alert() ; confirm() ; prompt()
24 The variable start w/ var keyword and can holds values from diferent types.
25 Primitive data types: string,number,boolean
26 Special chars: \n - newline; \t - tab; \f - form feed; \b - backspace; \r - carriage return
27 More primitive types: NaN - Not a Number; null; undefined - usually error in script.
28 From JavaScript 1.2 possible to create array by using new Array.
29 arrName = [elem0,...,elemN]
33 Follows event handlers exist:
50 A window represents by window obj. A document by document obj.
52 var win1 = "open(newwin.htm)";
55 var win1="open(newwin2.html" "resizable = no,height=500,width=500");