문제
Array의 프로토타입 개체에 있는 JavaScript 함수를 작성해야 합니다. 리터럴 값을 가져와야 하며 해당 값이 호출되는 배열에 있으면 true를 반환하고 그렇지 않으면 false를 반환해야 합니다.
예시
다음은 코드입니다 -
const arr = [1, 2, 3, 4, 5, 6, 7, 8]; const num = 6; Array.prototype.customIncludes = function(num){ for(let i = 0; i < this.length; i++){ const el = this[i]; if(num === el){ return true; }; }; return false; }; console.log(arr.customIncludes(num));
출력
true