Magic code in JavaScript without looping 8:56 AM Posted by Fathih IT Info No Comments <html> <head> </head> <body> <script type="text/javascript"> function doFirst(){ document.write(" magic! "); doSecond(); } function doSecond(){ document.write(" work! "); doFirst(); } doFirst(); </script> </body> </html> Share this Fathih IT Info
0 Comment to "Magic code in JavaScript without looping"
Post a Comment