Array JavaScript vsebuje - CSS-triki

Anonim

Predmeti Javascript so res lepi, včasih pa jim manjka nekaj koristnih majhnih funkcij / metod. Zgornji primer je z Arrays. Res je lepo vedeti, ali je element v vaši matriki ali ne. No, lahko napišete funkcijo, ki zajema matriko in element, ki ga preverjate, vendar je veliko čistejše dodati metodo vsebuje (item) v objekt Array.

Razširitev nizov 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; )

Uporaba

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