Skip to content

Instantly share code, notes, and snippets.

@knzm
Created September 29, 2012 10:04
Show Gist options
  • Select an option

  • Save knzm/3803615 to your computer and use it in GitHub Desktop.

Select an option

Save knzm/3803615 to your computer and use it in GitHub Desktop.
function A(p) {
var obj = function() {
return A(obj);
};
obj.p = p;
return obj;
};
console.log(A());
console.log(A()());
console.log(A()()())
console.log(A()()()())
console.log(A()()()().p)
console.log(A()()()().p.p)
console.log(A()()()().p.p.p)
console.log(A()()()().p.p.p.p)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment