본문 바로가기

2024-05-10 리액트 입문

codeConnection 2024. 5. 10.

오늘 배운 것은 아래 포스트로 정리한다.

https://infistudy.tistory.com/206

 

[내배캠] 001. [JS] 변수 (let, const, var) 와 스코프, 호이스팅

변수란?변수의 필요성데이터를 저장하고 관리하기 위해. 데이터를 저장해서 다른 코드에서 재사용할 수 있다.let numberOfusers = 50;numberOfusers = numberOfusers + 5;console.log(numberOfusers); // 55위의 예제에서

infistudy.tistory.com

https://infistudy.tistory.com/207

 

[내배캠] 002. [JS] 객체와 배열 - 값 접근하기, 수정하기, 삭제하기

객체란?개념key : value로 이루어진 데이터의 집합.리액트에서는 JSON 형태로 데이터를 불러오는 작업을 많이 한다. (JSON, JavaScript Object Notation)특징key: value 쌍을 이룬다 / value에는 모든 자료형이 올

infistudy.tistory.com

https://infistudy.tistory.com/208

 

[내배캠] 003. [JS] 객체와 배열 -

수정중

infistudy.tistory.com

https://infistudy.tistory.com/209

 

[내배캠] 004. [JS] 객체와 배열 - 템플릿 리터럴, 구조 분해 할당

ES6 업데이트 이후 제공된 핵심 기능 세 가지에 대해 학습한다.Template LiteralsDestructuringSpread Operators템플릿 리터럴 (Template Literals)개념변수와 표현식을 문자열 안에 삽입할 수 있게 해주는 문법.사

infistudy.tistory.com

 

댓글