function A(){}; var a = new A(); var b = a; a.cc = "cc"; console.log(b.cc);
代码中 me = this; 传递的有没有可能是引用而不是值
引用 保留一个 this的引用 引用在栈里 传说的this 漂移问题
引用传递。