-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
Copy pathbuilt-in-prototypes.html
32 lines (29 loc) · 1.29 KB
/
built-in-prototypes.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!doctype html>
<html lang="en">
<head>
<title>JavaScript Patterns</title>
<meta charset="utf-8">
</head>
<body>
<script>
/* Title: (Not) Augmenting Built-in Prototypes
* Description: it can seriously hurt maintainability, because it will make your code less predictable
*/
/* NOTE: You can make an exception of the rule only when all these conditions are met:
* 1. 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.
* 2. 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.
* 3. You clearly document and communicate the change with the team.
*/
if (typeof Object.prototype.myMethod !== "function") {
Object.prototype.myMethod = function () {
// implementation...
};
}
// References
// http://net.tutsplus.com/tutorials/javascript-ajax/the-essentials-of-writing-high-quality-javascript/
</script>
</body>
</html>