✅ Object.values() 객체의 value들만 모아서 배열로 생성 var scores = { kor: 55, mat: 75, eng: 50, }; let arr = Object.values(scores); document.write(arr); // [55, 75, 50] ✅ Reduce let avg = arr.reduce((total, num) => total + num) / arr.length; ✅ Find 주어진 판별 함수를 만족하는 첫 번째 요소를 반환 console.log(arr.find((item) => item item..