var s = "test";
alert(s.endsWith&&s.endsWith("t"));
// delete
var old = String.prototype.endsWith;
delete String.prototype.endsWith;
//
alert(s.endsWith&&s.endsWith("t"));
for (var k in s) {
alert(k);
}
//
String.prototype.endsWith = old;
alert(s.endsWith&&s.endsWith("t"));
【 在 Balancer (巴兰恻然|准备过年) 的大作中提到: 】
: 我是考虑把那些方法删掉
: 但是搜了一下,有个说法说是不可以注销任何存在的方法或者变量...
--
FROM 210.192.102.*