문서의 선택한 두 판 사이의 차이를 보여줍니다.
다음 판 | 이전 판 | ||
wiki:javascript:javascript_note:js_array_iteration [2021/05/06 08:40] emblim98 만듦 |
wiki:javascript:javascript_note:js_array_iteration [2023/01/13 18:44] (현재) |
||
---|---|---|---|
줄 27: | 줄 27: | ||
} | } | ||
</ | </ | ||
+ | \\ | ||
+ | 상기 예제의 함수는 다음과 같은 3개의 인수(arguments)를 가집니다. | ||
+ | * 항목의 값 (The item value) | ||
+ | * 항목의 인덱스 (The item index) | ||
+ | * 배열 자체 (The array itself) | ||
+ | 위의 예제에서는 값 매개변수(value parameter)만을 사용합니다. 다음과 같이 다시 작성할 수 있습니다.\\ | ||
+ | ====Example==== | ||
+ | <code javascript> | ||
+ | let txt = ""; | ||
+ | let numbers = [45, 4, 9, 16, 25]; | ||
+ | numbers.forEach(myFunction); | ||
+ | document.getElementById(" | ||
+ | function myFunction(value) { | ||
+ | txt = txt + value + "\, " // 45, 4, 9, 16, 25, | ||
+ | } | ||
+ | </ | ||
+ | =====Array.map()===== | ||
+ | '' | ||
+ | \\ | ||
+ | '' | ||
+ | \\ | ||
+ | '' | ||
+ | \\ | ||
+ | 다음 예제에서는 각 배열 값에 2를 곱합니다.\\ | ||
+ | ====Example==== | ||
+ | <code javascript> | ||
+ | let numbers1 = [45, 4, 9, 16, 25]; | ||
+ | let numbers2 = numbers1.map(myFunction); | ||
+ | document.getElementById(" | ||
+ | // 90, | ||
+ | function myFunction(value, | ||
+ | return value * 2; | ||
+ | } | ||
+ | console.log(numbers1); | ||
+ | console.log(numbers2); | ||
+ | </ | ||
+ | \\ | ||
+ | 이 함수는 3 개의 인수를 가집니다.\\ | ||
+ | * 항목 값 (The item value) | ||
+ | * 항목 색인 (The item index) | ||
+ | * 배열 자체 (The array itself) | ||
+ | 콜백 함수가 value 매개변수만 사용하는 경우, index 및 array 매개변수를 생략할 수 있습니다.\\ | ||
+ | ====Example==== | ||
+ | <code javascript> | ||
+ | let numbers1 = [45, 4, 9, 16, 25]; | ||
+ | let numbers2 = numbers1.map(myFunction); | ||
+ | document.getElementById(" | ||
+ | // 90, | ||
+ | function myFunction(value) { | ||
+ | return value * 2; | ||
+ | } | ||
+ | console.log(numbers1); | ||
+ | console.log(numbers2); | ||
+ | </ | ||
+ | =====Array.filter()===== | ||
+ | '' | ||
+ | \\ | ||
+ | 다음 예제는 값이 18보다 큰 요소에서 새 배열을 만듭니다.\\ | ||
+ | ====Example==== | ||
+ | <code javascript> | ||
+ | let numbers = [45, 4, 9, 16, 25]; | ||
+ | let over18 = numbers.filter(myFunction); | ||
+ | document.getElementById(" | ||
+ | // 45,25 | ||
+ | function myFunction(value, | ||
+ | return value > 18; | ||
+ | } | ||
+ | console.log(numbers); | ||
+ | console.log(over18); | ||
+ | </ | ||
+ | \\ | ||
+ | 이 함수는 3 개의 인수를 가집니다.\\ | ||
+ | * 항목 값 (The item value) | ||
+ | * 항목 색인 (The item index) | ||
+ | * 배열 자체 (The array itself) | ||
+ | 위의 예제에서, | ||
+ | ====Example==== | ||
+ | <code javascript> | ||
+ | let numbers = [45, 4, 9, 16, 25]; | ||
+ | let over18 = numbers.filter(myFunction); | ||
+ | document.getElementById(" | ||
+ | // 45,25 | ||
+ | function myFunction(value) { | ||
+ | return value > 18; | ||
+ | } | ||
+ | console.log(numbers); | ||
+ | console.log(over18); | ||
+ | </ | ||
+ | =====Array.reduce()===== | ||
+ | '' | ||
+ | \\ | ||
+ | '' | ||
+ | \\ | ||
+ | '' | ||
+ | \\ | ||
+ | 다음 예제는 배열에 있는 모든 숫자의 합계를 찾습니다.\\ | ||
+ | ====Example==== | ||
+ | <code javascript> | ||
+ | let numbers = [45, 4, 9, 16, 25]; | ||
+ | let sum = numbers.reduce(myFunction); | ||
+ | document.getElementById(" | ||
+ | function myFunction(total, | ||
+ | return total + value; | ||
+ | } | ||
+ | console.log(numbers); | ||
+ | console.log(sum); | ||
+ | </ | ||
+ | \\ | ||
+ | 이 함수는 4 개의 인수를 사용합니다.\\ | ||
+ | * 합계 (초기 값 / 이전에 반환 된 값) ( The total(the initial value / previously returned value) ) | ||
+ | * 항목 값 ( The item value ) | ||
+ | * 항목 색인 ( The item index ) | ||
+ | * 배열 자체 ( The array itself ) | ||
+ | 위의 예제에서는 인덱스 및 배열 매개변수를 사용하지 않습니다. 다음과 같이 다시 작성할 수 있습니다: | ||
+ | ====Example==== | ||
+ | <code javascript> | ||
+ | let numbers = [45, 4, 9, 16, 25]; | ||
+ | let sum = numbers.reduce(myFunction); | ||
+ | document.getElementById(" | ||
+ | function myFunction(total, | ||
+ | return total + value; | ||
+ | } | ||
+ | console.log(numbers); | ||
+ | console.log(sum); | ||
+ | </ | ||
+ | \\ | ||
+ | '' | ||
+ | ====Example==== | ||
+ | <code javascript> | ||
+ | let numbers = [45, 4, 9, 16, 25]; | ||
+ | let sum = numbers.reduce(myFunction, | ||
+ | document.getElementById(" | ||
+ | function myFunction(total, | ||
+ | return total + value; | ||
+ | } | ||
+ | console.log(numbers); | ||
+ | console.log(sum); | ||
+ | </ | ||
+ | =====Array.reduceRight()===== | ||
+ | '' | ||
+ | \\ | ||
+ | '' | ||
+ | \\ | ||
+ | '' | ||
+ | \\ | ||
+ | 다음 예제는 배열에 있는 모든 숫자의 합계를 찾습니다.\\ | ||
+ | ====Example==== | ||
+ | <code javascript> | ||
+ | let numbers = [45, 4, 9, 16, 25]; | ||
+ | let sum = numbers.reduce(myFunction); | ||
+ | document.getElementById(" | ||
+ | function myFunction(total, | ||
+ | return total + value; | ||
+ | } | ||
+ | console.log(numbers); | ||
+ | console.log(sum); | ||
+ | </ | ||
+ | \\ | ||
+ | 이 함수는 4 개의 인수를 사용합니다.\\ | ||
+ | * 합계 (초기 값 / 이전에 반환 된 값) | ||
+ | * 항목 값 | ||
+ | * 항목 색인 | ||
+ | * 배열 자체 | ||
+ | 위의 예제에서는 인덱스 및 배열 매개변수를 사용하지 않습니다. 다음과 같이 다시 작성할 수 있습니다.\\ | ||
+ | ====Example==== | ||
+ | <code javascript> | ||
+ | let numbers = [45, 4, 9, 16, 25]; | ||
+ | let sum = numbers.reduce(myFunction); | ||
+ | document.getElementById(" | ||
+ | |||
+ | function myFunction(total, | ||
+ | return total + value; | ||
+ | } | ||
+ | |||
+ | console.log(numbers); | ||
+ | console.log(sum); | ||
+ | </ | ||
+ | |||
+ | =====Array.every()===== | ||
+ | '' | ||
+ | \\ | ||
+ | 다음 예제에서는 모든 배열 값이 18보다 큰지 확인합니다.\\ | ||
+ | |||
+ | ====Example==== | ||
+ | <code javascript> | ||
+ | let numbers = [45, 4, 9, 16, 25]; | ||
+ | let allOver18 = numbers.every(myFunction); | ||
+ | |||
+ | document.getElementById(" | ||
+ | // All over 18 is false | ||
+ | |||
+ | function myFunction(value, | ||
+ | return value > 18; | ||
+ | } | ||
+ | console.log(numbers); | ||
+ | console.log(allOver18); | ||
+ | </ | ||
+ | \\ | ||
+ | 이 함수는 3 개의 인수를 가집니다.\\ | ||
+ | * 항목 값 | ||
+ | * 항목 색인 | ||
+ | * 배열 자체 | ||
+ | |||
+ | 콜백 함수가 첫 번째 매개변수 (값)만 사용하는 경우, 다른 매개 변수는 생략 할 수 있습니다.\\ | ||
+ | |||
+ | ====Example==== | ||
+ | <code javascript> | ||
+ | let numbers = [45, 4, 9, 16, 25]; | ||
+ | let allOver18 = numbers.every(myFunction); | ||
+ | |||
+ | document.getElementById(" | ||
+ | // All over 18 is false | ||
+ | |||
+ | function myFunction(value) { | ||
+ | return value > 18; | ||
+ | } | ||
+ | console.log(numbers); | ||
+ | console.log(allOver18); | ||
+ | </ | ||
+ | \\ | ||
+ | '' | ||
+ | ( Chrome Yes, Edge 9.0, Firefox Yes, Safari Yes, Opera Yes )\\ | ||
+ | |||
+ | |||
+ | =====Array.some()===== | ||
+ | '' | ||
+ | \\ | ||
+ | 다음 예제에서는 일부 배열 값이 18보다 큰지 확인합니다.\\ | ||
+ | |||
+ | ====Example==== | ||
+ | <code javascript> | ||
+ | let numbers = [45, 4, 9, 16, 25]; | ||
+ | let someOver18 = numbers.some(myFunction); | ||
+ | |||
+ | document.getElementById(" | ||
+ | // Some over 18 is true | ||
+ | |||
+ | function myFunction(value, | ||
+ | return value > 18; | ||
+ | } | ||
+ | console.log(numbers); | ||
+ | console.log(someOver18); | ||
+ | </ | ||
+ | \\ | ||
+ | 이 함수는 3 개의 인수를 취합니다.\\ | ||
+ | * 항목 값 | ||
+ | * 항목 색인 | ||
+ | * 배열 자체 | ||
+ | |||
+ | '' | ||
+ | ( Chrome Yes, Edge 9.0, Firefox Yes, Safari Yes, Opera Yes )\\ | ||
+ | |||
+ | =====Array.indexOf()===== | ||
+ | '' | ||
+ | \\ | ||
+ | **Note:** 첫 번째 항목의 위치는 0이고, 두 번째 항목의 위치는 1입니다.\\ | ||
+ | |||
+ | ====Example==== | ||
+ | 배열에서 " | ||
+ | <code javascript> | ||
+ | let fruits = [" | ||
+ | let a = fruits.indexOf(" | ||
+ | document.getElementById(" | ||
+ | // Apple is found in position 0 | ||
+ | console.log(fruits); | ||
+ | console.log(a); | ||
+ | </ | ||
+ | \\ | ||
+ | '' | ||
+ | ( Chrome Yes, Edge 9.0, Firefox Yes, Safari Yes, Opera Yes )\\ | ||
+ | |||
+ | |||
+ | |||
+ | ====Syntax==== | ||
+ | <code javascript> | ||
+ | array.indexOf(item, | ||
+ | </ | ||
+ | |||
+ | ^ item ^ 필수. 검색할 항목 | ||
+ | | start | 선택. 검색을 시작할 위치. 음수 값은 끝에서부터 계산하여 지정된 위치에서 시작하고 끝까지 검색합니다. | ||
+ | \\ | ||
+ | '' | ||
+ | \\ | ||
+ | 항목이 두 번 이상 있으면, 첫 번째 발생 위치를 반환합니다.\\ | ||
+ | |||
+ | =====Array.lastIndexOf()===== | ||
+ | '' | ||
+ | |||
+ | ====Example==== | ||
+ | 배열에서 " | ||
+ | <code javascript> | ||
+ | let fruits = [" | ||
+ | let a = fruits.lastIndexOf(" | ||
+ | document.getElementById(" | ||
+ | // Apple is found in position 3 | ||
+ | </ | ||
+ | \\ | ||
+ | '' | ||
+ | ( Chrome Yes, Edge 9.0, Firefox Yes, Safari Yes, Opera Yes )\\ | ||
+ | |||
+ | |||
+ | ====Syntax==== | ||
+ | <code javascript> | ||
+ | array.lastIndexOf(item, | ||
+ | </ | ||
+ | |||
+ | ^ item ^ 필수. 검색할 항목 | ||
+ | | start | 선택. 검색을 시작할 위치. 음수 값은 끝에서부터 계산하여 지정된 위치에서 시작하고 처음부터 검색 | ||
+ | |||
+ | =====Array.find()===== | ||
+ | '' | ||
+ | \\ | ||
+ | 다음 예제는 18보다 큰 첫 번째 요소를 찾습니다 (값 반환).\\ | ||
+ | |||
+ | ====Example==== | ||
+ | <code javascript> | ||
+ | let numbers = [4, 9, 16, 25, 29]; | ||
+ | let first = numbers.find(myFunction); | ||
+ | |||
+ | document.getElementById(" | ||
+ | |||
+ | function myFunction(value, | ||
+ | return value > 18; | ||
+ | } | ||
+ | </ | ||
+ | \\ | ||
+ | 이 함수는 3 개의 인수를 가집니다.\\ | ||
+ | * 항목 값 | ||
+ | * 항목 색인 | ||
+ | * 배열 자체 | ||
+ | |||
+ | '' | ||
+ | ( Chrome 45, Edge 12, Firefox 25, Safari 8, Opera 32 )\\ | ||
+ | |||
+ | =====Array.findIndex()===== | ||
+ | '' | ||
+ | \\ | ||
+ | 다음 예제에서는 18보다 큰 첫 번째 요소의 인덱스를 찾습니다.\\ | ||
+ | |||
+ | ====Example==== | ||
+ | <code javascript> | ||
+ | let numbers = [4, 9, 16, 25, 29]; | ||
+ | let first = numbers.findIndex(myFunction); | ||
+ | |||
+ | document.getElementById(" | ||
+ | // First number over 18 has index 3 | ||
+ | function myFunction(value, | ||
+ | return value > 18; | ||
+ | } | ||
+ | </ | ||
+ | \\ | ||
+ | 이 함수는 3 개의 인수를 가집니다.\\ | ||
+ | * 항목 값 | ||
+ | * 항목 색인 | ||
+ | * 배열 자체 | ||
+ | |||
+ | '' | ||
+ | ( Chrome 45, Edge 12, Firefox 25, Safari 8, Opera 32 )\\ | ||