Array JavaScript contém - CSS-Tricks

Anonim

Os objetos Javascript são realmente legais, mas às vezes faltam algumas funções / métodos úteis. O exemplo acima é com Arrays. É muito bom saber se um item está ou não contido em seu array. Bem, você pode escrever uma função que pegue o array e o item que você está verificando, mas é muito mais limpo adicionar o método contains (item) ao objeto Array.

Estendendo matrizes 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 )