20 lines
980 B
Plaintext
20 lines
980 B
Plaintext
Prototypes of builtin objects should not be modified.
|
|
|
|
== Why is this an issue?
|
|
|
|
By default, JavaScript allows you to modify native object prototypes, such as `Array`, `String`, `Object`, and so on. This means you can add new properties or methods to native objects or override existing ones. While this flexibility can be useful in some instances, it can lead to unexpected behavior, bugs, and compatibility issues.
|
|
|
|
The rule forbids extending or modifying native JavaScript objects or prototypes, as prototypes of builtin objects should not be modified altogether.
|
|
|
|
[source,javascript]
|
|
----
|
|
Object.prototype.universe = 42;
|
|
Object.defineProperty(Array.prototype, "size", { value: 0 });
|
|
----
|
|
|
|
== Resources
|
|
=== Documentation
|
|
|
|
* https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Objects/Object_prototypes[MDN - Object prototypes]
|
|
* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/defineProperty[MDN - ``++Object.defineProperty()++``]
|