A JavaScript tömb - CSS-trükkök

Anonim

A Javascript objektumok nagyon szépek, de néha hiányoznak néhány hasznos kis funkció / módszer. A fenti példa a tömbökre vonatkozik. Nagyon jó tudni, hogy egy elem szerepel-e a tömbben vagy sem. Nos, írhat egy olyan függvényt, amely elveszi a tömböt és az elemet, amelyet keres, de sokkal tisztább, ha hozzáadja a tartalmazza (elem) metódust az Array objektumhoz.

JavaScript tömbök kiterjesztése

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

Használat

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