如何从 javascript 类型中删除方法

发布于 2024-11-25 17:35:17 字数 219 浏览 1 评论 0原文

我有一些在第 3 方网站上运行的 javascript,这需要我临时向数组类型添加一个函数,例如,

Array.prototype.foo = function() { alert("foo's for everyone!"); }; 

我想成为一名优秀的开发人员,并且尽可能不污染其他人代码的类型系统,所以一次不再需要该功能我想再次删除该功能。这可能吗?

I have a bit of javascript that runs on a 3rd party's website which requires me to temporarily add a function to the Array type, e.g.

Array.prototype.foo = function() { alert("foo's for everyone!"); }; 

I want to be a good developer and not pollute the type systems of other people's code as much as possible so once the function is no longer needed I want to remove the function again. Is this possible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

纸短情长 2024-12-02 17:35:17

您可以使用 delete,这通常适用于从对象中删除所有类型的属性:

delete Array.prototype.foo;

示例:http ://jsbin.com/iyamut
MDN 文档:删除

You can use delete, which in general is good for removing all types of properties from objects:

delete Array.prototype.foo;

Example: http://jsbin.com/iyamut
MDN Documentation: delete

香橙ぽ 2024-12-02 17:35:17
Array.prototype.foo = undefined

或者

delete Array.prototype.foo
Array.prototype.foo = undefined

or

delete Array.prototype.foo
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文