|
-- Posted by Blasphemous Cow at 9:47 am on Oct. 28, 2006
Let's have a little competition. Make a pointless script. It must be coded in JavaScript. Whoever makes the most pointless script wins a cookie. Mine: http://www.freewebs.com/4747m/index.htm The script I used to make it: | Code: | var i=1000 for (i=1000;i>=0;i--) { document.write(i + " bottles of beer on the wall, ") document.write(i + " bottles of beeer!!!") document.write(" Take one down, pass it around, ") document.write(i + " bottles of beer on the wall!!") document.write(" ") } |
|