Next.js Journey
  • nextjs-journey-kr
  • React Foundations
    • docs
      • React 기초
      • Chapter 1. Rendering User Interface
      • Chapter 2. Updating UI with Javascript
      • Chapter 3. Getting Started with React
      • Chapter 4. Essential Javascript for React
      • Chapter 5. Building UI with Components
      • Chapter 6. Displaying Data with Props
      • Chapter 7. Adding Interactivity with State
      • Chapter 8. From React to Next.js
      • Chapter 9. Installing Next.js
      • 다음 단계
  • Learn Next.js
    • docs
      • Next.js 학습하기
      • Chapter 1. Getting Started
      • Chapter 2. CSS Styling
      • Chapter 3. Optimizing Fonts and Images
      • Chapter 4. Creating Layouts and Pages
      • Chapter 5. Navigating Between Pages
      • Chapter 6. Setting Up Your Database
      • Chapter 7. Fetching Data
      • Chapter 8. Static and Dynamic Rendering
      • Chapter 9. Streaming
      • Chapter 10. Partial Prerendering (Optional)
      • Chapter 11. Adding Search and Pagination
      • Chapter 12. Mutating Data
      • Chapter 13. Handling Errors
      • Chapter 14. Improving Accessibility
      • Chapter 15. Adding Authentication
      • Chapter 16. Adding Metadata
      • Next Steps
Powered by GitBook
On this page

Was this helpful?

Edit on GitHub
  1. React Foundations
  2. docs

Chapter 4. Essential Javascript for React

PreviousChapter 3. Getting Started with ReactNextChapter 5. Building UI with Components

Last updated 1 year ago

Was this helpful?

Chapter 4

React를 위한 필수 자바스크립트

자바스크립트와 React를 동시에 배울 수도 있지만, 자바스크립트에 익숙하다면 React를 배우는 과정이 더 쉬울 것입니다.

다음 섹션에서는 자바스크립트 관점에서 React의 핵심 개념을 소개하겠습니다. 다음은 언급될 자바스크립트 주제에 대한 요약입니다:

  • 와

이 강좌는 자바스크립트를 깊게 다루지는 않지만, 자바스크립트 버전을 최신 상태로 유지하는 것은 좋은 연습이 될 것입니다. 그러나 아직 자바스크립트에 능숙하지 않다면 이것이 React를 시작하는 데 방해가 되지 않도록 해야 합니다!


React의 핵심 개념

다음은 React 애플리케이션을 구축하기 위해 익숙해져야 할 세 가지 핵심 개념입니다:

  • 컴포넌트

  • 프롭스 (Props)

  • 상태 (State)

다음 장에서는 위의 개념을 자세히 살펴보고 개념들을 계속 학습할 수 있도록 리소스를 제공할 것입니다.

함수
화살표 함수 표현식
객체
배열과 배열 메서드
구조 분해 할당
템플릿 리터럴
삼항 연산자
ES 모듈과 Import / Export 구문