[TypeScript] in 문법, typeof 문법 차이
in 문법: 객체에 특정 속성이 존재하는지 확인할 때 사용된다.typeof 문법: 변수의 타입을 확인할 때 사용된다 예제를 통해 알아보자. 1. in 문법interface Person { name: string; age?: number;}const person: Person = { name: "Alice", age: 30,};console.log("age" in person); // trueconsole.log("address" in person); // false 2. typeof 문법let x = "hello";let y = 42;let z = true;console.log(typeof x); // "string"console.log(typeof y); // "number"consol..
Client/TypeScript
2024. 6. 1. 09:00
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 제어 컴포넌트
- 중급 프로젝트
- 비제어 컴포넌트
- 유사배열객체
- 동기
- 프론트엔드
- 코드잇스프린트
- 비동기
- Next.js
- tanstackquery
- js
- rest parameter
- html
- CSS
- map
- currentTarget
- hydrationboundary
- innerhtml
- 리액트
- Git
- GitHub
- react
- 코드잇 스프린트
- 배열
- Target
- 취업까지달린다
- 스프린트프론트엔드6기
- javascript
- 객체
- arguments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함