La matriz de JavaScript contiene - Trucos CSS

Anonim

Los objetos Javascript son realmente agradables, pero a veces les faltan algunas funciones / métodos útiles. El ejemplo anterior es con matrices. Es realmente bueno saber si un elemento está contenido dentro de su matriz. 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 )