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 |
Tags
- JavaScript
- promise
- this 객체
- Frontend Study
- input
- 렌더링
- HTML
- 리액트
- 함수 실행
- 메소드 실행
- try.. catch
- CSS
- callback함수
- webProject
- FrontendStydy
- 배열
- 이벤트핸들링
- 이벤트
- 컴포넌트
- addEventListener
- 배열메소드
- REACT
- 비동기함수
- useRef
- typeScript
- 자바스크립트
- DOM
- frontendstudy
- useState
- Props
Archives
- Today
- Total
목록CONCAT 함수 (1)
이다닷
[React] Day 8 - create 구현 2
Contents 변경 concat 함수 사용 ➡️이러한 방법으로 사용할 수 있는 concat 함수를 사용하여 우리가 입력한 title과 description 값을 추가해 줄 수 있다. ➡️이와같이 push 함수를 사용해도 원소를 추가할 수는 있지만 concat과는 달리 원본이 변경된다. 따라서 concat의 방법을 사용하려고 한다. 📢push대신 concat를 사용하는 이유 -> push는 성능적인 부분에서 많이 떨어진다. App.js 추가내용 var _title, _desc, _article = null; if (this.state.mode === 'welcome') { _title = this.state.welcome.title; _desc = this.state.welcome.desc; _artic..
React
2023. 9. 1. 18:00