Pole JavaScriptu obsahuje Triky CSS

Anonim

Objekty Javascript sú naozaj pekné, ale niekedy im chýba niekoľko užitočných malých funkcií / metód. Vyššie uvedený príklad je s poľami. Je naozaj pekné vedieť, či je alebo nie je položka vo vašom poli. Môžete napísať funkciu, ktorá prevezme pole a položku, ktorú hľadáte, ale je oveľa čistejšie pridať metódu contains (item) do objektu Array.

Rozširovanie polí JavaScriptu

/** * 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; )

Využitie

// Now you can do things like: var x = Array(); if (x.contains('foo')) ( // do something special )