Los objetos Javascript son realmente agradables, pero a veces les faltan algunas pequeñas funciones / métodos útiles. El ejemplo anterior es con Arrays. Es realmente bueno saber si un elemento está contenido en su matriz o no. Bueno, puede escribir una función que tome la matriz y el elemento que está buscando, pero es mucho más limpio agregar el método contains (elemento) al objeto Array.
Ampliación de matrices de JavaScript
/**
* Array.prototype.[method name] allows you to define/overwrite an objects method
* needle is the item you are searching for
* this is a special variable that refers to "this" instance of an Array.
* returns true if needle is in the array, and false otherwise
*/
Array.prototype.contains = function ( needle ) {
for (i in this) {
if (this[i] == needle) return true;
}
return false;
}
Uso
// Now you can do things like:
var x = Array();
if (x.contains('foo')) {
// do something special
}
(Visited 5 times, 1 visits today)