Adding methods to native JavaScript objects like Object, Function, Array, String, etc considered as bad practice.
But I could not understand why?
Can some body shed light on this?
Thanks in advance.
|
|
Adding methods to native JavaScript objects like Object, Function, Array, String, etc considered as bad practice. But I could not understand why? Can some body shed light on this? Thanks in advance.
|
||
|
|
|
|
Because you might happen to use a library that defined a function with the same name, but working another way. By overriding it, you break the other's library's behaviour, and then you scratch your head in debug mode. Edit If you really want to add a method with a very unpleasant name like Best way to do it is still, in my humble opinion, to define for example, a |
||||||
|
|
|
The two big reasons in my opinion are that:
|
||
|
|
|
|
There is also the effect that augmenting the Object prototype has on
|
||
|
|