퀴즈 · 3 questions
📐 Arrays & Tuples — 위치가 중요할 때
T[], Array<T>, tuple, readonly modifier, as const, variadic tuple
Level 0Curious
0 XP0/93 lessons0/23 achievements
0/100 XP to next level100 XP to go0% complete
Quiz
01
string[] 과 [string, string] 의 차이?Hint
둘 다 hover:
const a: string[] = ['hi'] 와 const b: [string, string] = ['hi', 'there']. 모양 달라.02
as const 가 배열 literal 에 뭐 함?Hint
둘 다 시도하고 hover:
const colors = ['red', 'blue'] vs const colors = ['red', 'blue'] as const. 추론된 타입 많이 달라.03Variadic tuple 이 뭐 해결?
Hint
Variadic tuple 이 RxJS, Redux Toolkit, util library 의 modern TypeScript-aware 버전이 마침내 compose/pipe 에 제대로 된 타입 가진 이유.
댓글 0
🔔 답글 알림 (로그인 필요)로그인 — 댓글을 남기려면 로그인해 주세요.
아직 댓글이 없어요. 첫 댓글을 남겨보세요.