[JavaScript] 배열관련 메서드(sort, filter, every, some, find, findIndex, includes)
var array = [1,2,3,4,5]; // array.includes(찾을 값, 시작인덱스); for(let i =0; i word.length > 6); const result2 = words.filter(function(word){ return word.length>6;}); console.log(result1); console.log(result2); // [ 'exuberant', 'destruction', 'present' ] // [ 'exuberant', 'destruction', 'present' ] 다음과 같이 길이가 6을 초과하는 항목들만 result에 담긴것을 볼 수 있죠. 조금 더 복잡한 과정의 filter의 예제를 본다면 function filterItem(query){ r..
2021. 5. 13.