This is similar to Scratch's forever loop.
function floophappy() - Start of Function
alert("( ◠‿◠ )") - Alerts the ASCII happy face
floophappy() - Calls the function again, going back to step one
| /*This is similar to Scratch (scratch.mit.edu)'s Forever loop. It simply just goes forever.*/ | |
| function floophappy() { | |
| alert("( ◠‿◠ )"); | |
| floophappy(); | |
| } |