Javascript delete 引用类型对象
摘要:
很少使用javascript的delete,最近因为一个小bug发现删除引用类型对象的时候有一点不同。如下面例子:var testVar = { a : { test : 1 } }, test1 = {}, test2 = {}; test1.a = testVar.a; test2.a = testVar.a;/* delete test1.a; console.log(test1.a); // und... 阅读全文
posted @ 2013-09-29 20:49 Mr Code 阅读(205) 评论(0) 推荐(0) 编辑