JavaScript: The Definitive Guide, 3rd edition by David Flanagan Following are the changes made in the 8/99 reprint: {21} Lines 3-4 of the first sample script in section 1.8 now reads: "... for (i=0, j=1, k=0, fib =0; i<50; i++, fib=j+k, k=fib){ document.write ( "Fibonacci (" + i + ") = " + fib); ..." {75} The 3rd line of code used to read: "1" + 2 // Concatenation; 2 is converted to "2". Result is 12. It now reads: "1" + 2 // Concatenation; 2 is converted to "2". Result is "12". (512) The "See Also" section of the "Form.onreset" reference section, used to read: "Form.onsubmit, Form.reset(), Chapter 15" It now reads: "Form.onsubmit, Form.reset(), Chapter 16" (512) The "See Also" section of the "Form.onsubmit" reference section, used to read: "Form.submit(), Chapter 15" It now reads: "Form.submit(), Chapter 16"