Skip to content

Instantly share code, notes, and snippets.

@1dolinski
Created February 22, 2014 04:19
Show Gist options
  • Save 1dolinski/9148680 to your computer and use it in GitHub Desktop.
Save 1dolinski/9148680 to your computer and use it in GitHub Desktop.
var foo, bar = null;
foo = {
setBar: function(value) {
bar = value;
}
};
foo.setBar(123);
console.log(bar);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment