javascript.js 279 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 // Syntax Highlighting Test File for JavaScript // Some Comments about this file function HelloAlert () { alert("Hello World!") } function count(to) { for (i = 0; i <= to; i++) { document.write("The number is " + i) document.write("<br />") } }