Skip to content

Instantly share code, notes, and snippets.

@canhnht
Created August 2, 2015 11:23
Show Gist options
  • Save canhnht/0d7ca9d1edbb7e28a7ac to your computer and use it in GitHub Desktop.
Save canhnht/0d7ca9d1edbb7e28a7ac to your computer and use it in GitHub Desktop.
javascript test
var v1, v2;
v1 = {v: {p: 4}};
console.log('BEFORE', v1);
(function(a, b) {
console.log('inside', a.v);
console.log('b', b);
a.v.kkkk = 5;
b.p = 10;
})(v1, v1.v);
console.log('AFTER', v1, v2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment