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
- Helmet
- usesetrecoilstate
- 귤 고르기
- 노마드코더
- 오블완
- 티스토리챌린지
- H-index
- 42747
- programmers
- 프로그래머스
- Outlet
- userecoilvalue
- Recoil
- React
- Typescript
- useoutletcontext
- 138476
Archives
- Today
- Total
목록Typescript (1)
오늘도 코딩하나
[Typescript] 타입스크립트로 블록체인 만들기_(2)
https://nomadcoders.co/typescript-for-beginners 타입스크립트로 블록체인 만들기 – 노마드 코더 Nomad CodersTypescript for Beginnersnomadcoders.co 강의 내용 요약#2.1 ~ #2.4 1️⃣ Typescript의 타입 시스템 (1) Javascript처럼 변수만 생성하기let a = "hello"a = "bye"// Type 'number' is not assignable to type 'string'.a = 1Typescript가 타입을 추론해준다.→ a = "hello"라고 정의해줬고, Typescript가 a는 string이라고 추론했다.→ 그에 따라 a = 1 숫자를 입력하니 오류가 발생한다. (2) 데이터와 변수의..
Typescript/Lecture
2025. 1. 6. 15:23