[React] map, filter를 이용한 예제
/* 정보 전달 목적의 글 보다는 공부하면서 기억하기 위해 적는 글입니다. 따라서 깊이가 얕으며, 잘못된 정보가 있을 수 있습니다. */ map이란? 배열.map((현재 값) => 수행하고 싶은 일) arr.map(callback, [thisArg]) callback(currentValue(현재 요소), index(현재 인덱스), array(원본 배열)) thisArg : callback 함수 내부에서 사용할 this 레퍼런스 map 기본 예제 import React, { useState } from "react"; const MyComponent = () => { const [names, setNames] = useState([ { id: 1, text: '음악' }, { id: 2, text: '코딩..