Javascript objekti ir patiešām jauki, taču dažreiz tiem trūkst dažu noderīgu funkciju / metožu. Iepriekš minētais piemērs ir ar masīviem. Ir patiešām patīkami uzzināt, vai jūsu masīvā ir iekļauts elements. Varat uzrakstīt funkciju, kas ņem masīvu un pārbaudāmo vienumu, taču daudz tīrāk ir pievienot Array (elements) metodi Array objektam.
Paplašinot JavaScript masīvus
/** * 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; )
Lietošana
// Now you can do things like: var x = Array(); if (x.contains('foo')) ( // do something special )