Created
October 22, 2011 21:57
-
-
Save jch/1306535 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* **She grows old and feeble** */ | |
//...But she would always have to return back to her dull world of chores and grown-ups. | |
return function() { | |
// And her latest story would be filled with wonder | |
latestStory = adventures[adventures.length - 1]; | |
// But time is a bitch... | |
setInterval(function() { | |
// and our dear princess can't help but forget her adventures, | |
// until one day when she wakes up with no adventures and an undefined future. | |
return adventures.pop(); | |
}, 99999); | |
return latestStory; | |
} |
shouldn't that be shift?
lmao ... return adventures.pop()
happens to the best of us
👍
// until one day when she wakes up with no adventures and an undefined future
Priceless. I'm so happy that I pressed the link :)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ha! Wasn't sure what to expect when I clicked the link... Thanks, that gave me a good chuckle.