Skip to content

Instantly share code, notes, and snippets.

@stekhn
Last active December 8, 2017 14:46
Show Gist options
  • Save stekhn/3e4575e22b8677f888e1a71cde20eb15 to your computer and use it in GitHub Desktop.
Save stekhn/3e4575e22b8677f888e1a71cde20eb15 to your computer and use it in GitHub Desktop.
Infinite recursion with the sole purpose of sharing love
(function shareTheLove(♥) {
if (♥ < Infinity) {
shareTheLove(++♥)
}
})(0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment