사용자 도구

사이트 도구


wiki:javascript:javascript_note:findindex

차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

다음 판
이전 판
wiki:javascript:javascript_note:findindex [2022/12/29 11:19]
emblim98 만듦
wiki:javascript:javascript_note:findindex [2023/01/13 18:44] (현재)
줄 131: 줄 131:
 // numbers 배열에서 18보다 큰 숫자 요소의 인텍스는 3 입니다. // numbers 배열에서 18보다 큰 숫자 요소의 인텍스는 3 입니다.
 </code> </code>
 +\\
 +예제4\\
 +<code javascript>
 +let ranks = [1, 5, 7, 8, 10, 7];
 +let index = ranks.findIndex(rank => rank === 7);
 +// ranks 배열에서 숫자 7이 처음 나타나는 인덱스를 반환
  
 +console.log(index);     // 2
 +</code>
 +\\
 +<code javascript>
 +let ranks = [1, 5, 7, 8, 10, 7];
  
 +let index = ranks.findIndex(
 +    (rank, index) => rank === 7 && index > 2
 +    // ranks 배열에서 인덱스 2 이후에 숫자 7이 처음 나타나는 인덱스를 반환
 +);
 +
 +console.log(index);     // 5
 +</code>
 +\\
 +<code javascript>
 +const products = [
 +    {name: 'Phone', price: 999}
 +    , {name: 'Computer', price: 1999}
 +    , {name: 'Tablet', price: 995}
 +];
 +
 +const index = products.findIndex(product => product.price > 1000);
 +// 가격이 1000보다 큰 첫 번째 product의 인덱스를 반환
 +
 +console.log(index); // 1
 +</code>
  
  
줄 140: 줄 171:
 [[https://www.w3schools.com/jsref/jsref_findindex.asp|JavaScript Array findIndex()]]\\ [[https://www.w3schools.com/jsref/jsref_findindex.asp|JavaScript Array findIndex()]]\\
 [[https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/findIndex|Array.prototype.findIndex()]]\\ [[https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/findIndex|Array.prototype.findIndex()]]\\
 +[[https://www.javascripttutorial.net/es6/javascript-array-findindex/|JavaScript Array findIndex() Method]]\\
  
  
/volume1/web/dokuwiki/data/attic/wiki/javascript/javascript_note/findindex.1672280371.txt.gz · 마지막으로 수정됨: 2022/12/29 11:19 저자 emblim98