Created
February 13, 2023 01:24
-
-
Save rbren/aec12e617584ad50bf885f23fb5d8e08 to your computer and use it in GitHub Desktop.
JavaScript Quine
This file contains 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
var tick = "`" | |
var code = | |
` | |
console.log('var tick = "' + tick + '"'); | |
console.log('var code = '); | |
console.log(tick); | |
console.log(code.trim()); | |
console.log(tick); | |
console.log(code.trim()); | |
` | |
console.log('var tick = "' + tick + '"'); | |
console.log('var code = '); | |
console.log(tick); | |
console.log(code.trim()); | |
console.log(tick); | |
console.log(code.trim()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment