Skip to content

Instantly share code, notes, and snippets.

@lgarron
Created March 22, 2012 01:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lgarron/2155083 to your computer and use it in GitHub Desktop.
Save lgarron/2155083 to your computer and use it in GitHub Desktop.
Javascript Quine
// Very inelegant right now.
(function(q){return q.substr(0, q.length-1)+String.fromCharCode(39)+q+String.fromCharCode(39)+q.substr(q.length-1, q.length);})('(function(q){return q.substr(0, q.length-2)+String.fromCharCode(39)+q+String.fromCharCode(39)+q.substr(q.length-2, q.length);})()')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment