JavaScript (๋ฐฐ์ด)์ด .find()๋ฉ์๋๋ ์ฃผ์ด์ง ์กฐ๊ฑด์ ๋ง์กฑํ๋ ๋ฐฐ์ด์ ์ฒซ ๋ฒ์งธ ์์๋ฅผ ๋ฐํํฉ๋๋ค.array.find(callback(element, index, array), thisArg); const numbers = [10, 20, 30, 40];const found = numbers.find(num => num > 25);console.log(found); // Output: 30