250x250
반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- AWS
- 백테스트
- it
- backtrader
- can
- 자동차sw
- AUTOSAR
- 아마존 웹 서비스
- 토플
- 블록체인
- 토플 라이팅
- Bitcoin
- 클라우드
- GeorgiaTech
- probability
- 개발자
- 오토사
- 자동매매
- 암호화폐
- 프로그래밍
- 비트코인
- TOEFL
- 퀀트
- 파이썬
- python
- backtest
- 확률
- toefl writing
- Cloud
- 백트레이더
Archives
- Today
- Total
목록Study/Javascript (1)
Leo's Garage
JavaScript - map으로 Array Data Rendering
JavaScript로 코드를 작성하다보면, Array 형태의 Data를 순차적으로 Rendering해야하는 상황을 만나게 된다. 그때는 map을 사용해서 Rendering할 수 있다. import React from 'react'; import { View, Text } from 'react-native'; const MyFunctionalComponent = (props) => { const data = props.data; const arraySize = data.length; return ( Array size: {arraySize} {data.map((item, index) => { return ( {item} ); })} ); }; export default MyFunctionalComponen..
Study/Javascript
2023. 2. 7. 23:34