Name: Anonymous 2011-08-01 6:49
I have wrote a function which gives an answer to the ultimate question. Behold:
function chicken() {
return egg();
}
function egg() {
return chicken();
}
alert(chicken() + " came first.");