Javascript objekti su stvarno lijepi, ali ponekad im nedostaju neke korisne male funkcije / metode. Gornji primjer je s Arrays. Zaista je lijepo znati je li neka stavka sadržana u vašem polju. Pa, možete napisati funkciju koja uzima niz i stavku koju provjeravate, ali puno je čišće dodati metodu contains (item) u objekt Array.
Proširivanje JavaScript nizova
/** * 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; )
Upotreba
// Now you can do things like: var x = Array(); if (x.contains('foo')) ( // do something special )