ホームページ >ウェブフロントエンド >jsチュートリアル >配列に指定された要素が含まれているかどうかを判断する JavaScript メソッド_JavaScript スキル
この記事の例では、JavaScript が配列に指定された要素が含まれているかどうかを判断する方法を説明します。皆さんの参考に共有してください。詳細は以下の通りです。
このコードはプロトタイプを通じて配列メソッドを定義しているため、contains メソッドを任意の配列で呼び出すことができます
/** * 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; }
使用法:
// Now you can do things like: var x = Array(); if (x.contains('foo')) { // do something special }
この記事が皆様の JavaScript プログラミング設計に役立つことを願っています。