1. 1차배열에서 값 찾기 : indexOf를 사용하자 var arr = [ "사과", "딸기", "복숭아" ]; var arr2 = [ 5, 3, 0.5, 7, 2, 9]; console.log(arr.indexOf("복숭아")); // 2 출력 console.log(arr2.indexOf(5)); // 0 출력 //따라서 const resultIndex= arr.indexOf("복숭아") console.log(arr[resultIndex]) // 복숭아 출력! 2.객체배열에서 값 찾기 : findIndex , find ✅find : 주어진 판별 함수를 만족하는 배열의 첫 번째 요소를 반환합니다. 만족하는 요소가 없으면 undefined를 소환 , ✅findIndex: 주어진 판별 함수를 만족하는 배열..