리액트 공부 - map / input value 추가해서 아래 나타내기
자바스크립트 배열 map() 함수 arr.map(callback, [thisArg]) callback 새로운 배열 요소 생성 currentValue 현재 처리 요소 index 현재처리요소 index 값 array 현재처리 원본 배열 thisArg(선택항목) 콜백 함수 내부 this 레퍼런스 var numbers = [1,2,3,4,5]; var processed = numbers.map(function(num){ return num * num; }); console.log(processed); (5) [1, 4, 9, 16, 25] 콘솔에서 확인 가능 (결론 보기전까지는 shift + 엔터 / 결론 보려면 엔터) render() { const names = ['눈사람', '얼음', '눈', '바람']; ..
2020. 12. 25.