일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- JS
- RN navitate push
- gsap
- js 특정 위치로 이동
- gsap 기초
- rn webview page loading
- 퍼블리셔
- 웹뷰 페이지 로딩
- React Native SafeArea Custom
- styled component 작동안함
- SafeArea 커스텀
- React Native navigation
- 프론트앤드
- safari wiondow.open
- styled component
- styled component 작동 안될때
- react이론
- React-Native IOS
- 타입스크립트
- scrollIntoView scrollTo
- 임고미
- react native safeArea
- React-Native 공부
- 리액트
- slick slider 간격
- 트윈맥스 기초
- styled component is not working
- react
- input 숫자입력
- reactnative 웹뷰 페이지 로딩
Archives
- Today
- Total
목록객체타입 (1)
개발공부 임고미
[Typescript] 타입의 종류 - 원시타입 / 객체타입 / 기타
목차 0. 들어가며 1. 알 고쓰자 TypeScript : 왜 타스인가 ? 2. 타입의 종류 1. 원시타입 string, number, BigInt, boolean, null, undefined, symbol 1 ) string let str: string; str = '123'; str = 123; // Error 2) number let num: number; num = 123; num = 123.456; num = '123'; // Error 3) BigInt 원시 값이 안정적으로 나타낼 수 있는 최대치인 2^53 - 1보다 큰 정수를 표현할 수 있는 내장 객체입니다. const theBiggestInt = 9007199254740991n; const alsoHuge = BigInt(90071992..
카테고리 없음
2022. 7. 4. 16:19