Tablica JavaScript zawiera - CSS-Tricks

Anonim

Obiekty JavaScript są naprawdę ładne, ale czasami brakuje im kilku przydatnych małych funkcji / metod. Powyższy przykład dotyczy tablic. Fajnie jest wiedzieć, czy element znajduje się w tablicy. Cóż, możesz napisać funkcję, która pobiera tablicę i element, którego szukasz, ale znacznie czystszym jest dodanie metody zawiera (item) do obiektu Array.

Rozszerzanie tablic 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; )

Stosowanie

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