Annotate primitives when it helps readers: string, number, boolean, bigint, symbol.
Inference
TypeScript often infers types from initializers—const count = 3 is number. Add explicit annotations at API boundaries and empty collections: const ids: string[] = [].
Challenge
Annotate a profile
- Declare
name: string,age: number,active: boolean. - Build one message string and print it.
Done when: terminal shows all three values in one line.