Skip to content

Instantly share code, notes, and snippets.

@jugglinmike
Created July 12, 2012 13:19
Show Gist options
  • Save jugglinmike/3098065 to your computer and use it in GitHub Desktop.
Save jugglinmike/3098065 to your computer and use it in GitHub Desktop.
JavaSript Quine
var g = function () { console.log("var g = " + this.toString() + "; g.call(g);"); }; g.call(g);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment