蛋疼....

2017-07-05 20:34:19 +08:00
 xss
root@test:~# node test.js
100
300
true
100
true
100

root@test:~# cat test.js 
function Test(){
}
Test.prototype.v = 100;

var t = new Test();
console.log(t.v);
t.v = 300;

console.log(t.v);
console.log(delete t.v);
console.log(t.v);
console.log(delete t.v);
console.log(t.v);

delete operator

If a property with the same name exists on the object's prototype chain, then, after deletion, the object will use the property from the prototype chain (in other words, delete only has an effect on own properties).

2597 次点击
所在节点    JavaScript
4 条回复
crazyxhz
2017-07-05 22:02:41 +08:00
有啥问题?
delete:Return value
true for all cases except when the property is an own non-configurable property, in which case, false is returned in non-strict mode.
gongbaodd
2017-07-06 10:28:31 +08:00
没毛病,基于原型嘛
xss
2017-07-06 13:54:32 +08:00
@crazyxhz @gongbaodd 最后一次 delete 的时候理解上, 应该返回 false ?因为没有 use strict....
crazyxhz
2017-07-06 21:22:06 +08:00
@xss 非严格模式下,所有 delete 操作都范围 true,除非
使用 defineProperty 定义了一个 non-configurable 的属性,例如:
Object.defineProperty(obj, 'key', {
configurable: false
});
delete obj.key 在上面情况非严格模式下返回 false

在严格模式下,所有情况都返回 true,删除 non-configurable 的属性直接报错

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/373311

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX