Skip to content

Instantly share code, notes, and snippets.

@bga
Created November 6, 2010 23:28
Show Gist options
  • Save bga/665798 to your computer and use it in GitHub Desktop.
Save bga/665798 to your computer and use it in GitHub Desktop.
var a = new MutableValue(
{
__call__: function(b)
{
this = b;
};
}
);
a(1); // really a = 1
console.log(a) // 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment