上代码:function A(){ this.name = "Aiello"; this.id = 123; this.destroy = function(){ /* Todo */ }}// 创建实例var a = new A();// 输出属性console.log(a.name); // 'Aiello'// 删除对象自身a.destory();console.log(a); // 这里可以是返回 null 或 undefind 或者 报错这种功能能实现吗?
添加回答
举报
0/150
提交
取消