Skip to content

Instantly share code, notes, and snippets.

@canhnht
canhnht / test.js
Created August 2, 2015 11:23
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);