HTMLCollection

select ๊ฐ’์„ value์— ๋„ฃ๊ธฐ๋งŒ ํ–ˆ์ง€ ํ•ด๋‹น value์—์„œ ๊บผ๋‚ด์˜จ ๊ฒƒ์ด ๊ธฐ์–ต์ด ์ž˜ ์•ˆ๋‚˜ ๋ฉ”๋ชจํ•ด๋†“๋Š”๋‹ค. import { useState } from "react"; export default function App() { const initialFruitList = [ { id: 1, name: "์‚ฌ๊ณผ", color: "RED" }, { id: 2, name: "๋ฐ”๋‚˜๋‚˜", color: "YELLOW" }, { id: 3, name: "์ฒด๋ฆฌ", color: "RED" }, { id: 4, name: "๋ณต์ˆญ์•„", color: "PINK" }, { id: 5, name: "ํฌ๋„", color: "PURPLE" }, ]; const [fruitList, setFruitList] = useState(initia..
Dong _ hwa
'HTMLCollection' ํƒœ๊ทธ์˜ ๊ธ€ ๋ชฉ๋ก