Skip to content

Instantly share code, notes, and snippets.

@vilhalmer
Created September 30, 2012 18:52
Show Gist options
  • Save vilhalmer/3808134 to your computer and use it in GitHub Desktop.
Save vilhalmer/3808134 to your computer and use it in GitHub Desktop.
A simple JavaScript quine. (Updated to not rely on the presence of window.)
this.quine = function ()
{
console.log("this.quine = " + this.quine.toString() + ";\nquine();");
};
quine();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment