이 기사의 예에서는 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 프로그래밍 설계에 도움이 되기를 바랍니다.