Skip to content

Instantly share code, notes, and snippets.

@jonrandy
Created September 6, 2025 08:44
Show Gist options
  • Save jonrandy/9e4ee8721f1d3b1c2aabb36e980f43fb to your computer and use it in GitHub Desktop.
Save jonrandy/9e4ee8721f1d3b1c2aabb36e980f43fb to your computer and use it in GitHub Desktop.
Schroedinger's Closure
function makeFunction() {
let myVar = 123
return function (s) {
console.log(eval(s))
}
}
const func = makeFunction()
func('myVar + 1')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment