JavaScript Patterns 2.5 (Not) Augmenting Build-in Prototypes
Disadvantage
- Other developers using your code will probably expect the built-in JavaScript methods to work consistently and will not expect your additions.
- Properties you add to the prototype may show up in loops that don‘t use hasOwnProperty(), so they can create confusion.
Augment build-in prototypes under all of the conditions below:
- It‘s expected that future ECMAScript versions or JavaScript implementations will implement this functionality as a built-in method consistently. For example, you can add methods described in ECMAScript 5 while waiting for the browsers to catch up. In this case you‘re just defining the useful methods ahead of time.
- You check if your custom property or method doesn‘t exist already—maybe already implemented somewhere else in the code or already part of the JavaScript engine of one of the browsers you support.
-
You clearly document and communicate the change with the team.
If these three conditions are met, you can proceed with the custom addition to the prototype, following this pattern:
if (typeof Object.protoype.myMethod !== "function") { Object.protoype.myMethod = function () { // implementation... }; }
JavaScript Patterns 2.5 (Not) Augmenting Build-in Prototypes,古老的榕树,5-wow.com
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。