TypeScript Symbol Master
OfficialSymbol PracticeTypeScript
Overview
Practice typing with symbol-heavy code sentences. Get familiar with TypeScript syntax.
Rules
Mode
Single LineShuffleOff
Time Limit
1:00Mistake Limit
Up to 10Code PreviewTypeScript
type Greet = (name: string) => string;
const add = (a: number, b: number) => a + b;
interface User { name: string; age: number; }
const arr: number[] = [1, 2, 3, 4, 5];
const obj = { key: 'value', count: 10 };
function multiply(x: number, y: number): number {}
const isValid = value !== null && value !== undefined;
const result = data?.user?.profile?.name ?? 'Guest';
const numbers = [...arr1, ...arr2, ...arr3];
const { name, age, ...rest } = user;
type Result<T> = { data: T } | { error: string };
const promise = async (): Promise<void> => {};
const callback = (err?: Error, data?: any) => {};
if (condition) { doSomething(); } else { doOther(); }
const ternary = isActive ? 'yes' : 'no';
for (let i = 0; i < arr.length; i++) {}
array.map((item) => item.value).filter((v) => v);
const regex = /^[a-zA-Z0-9]+$/g;
obj['key'] = value || defaultValue;
export default class MyClass extends BaseClass {}Statistics
Mode
Single LineShuffleOff
Time Limit
1:00Mistake Limit
Up to 10Created
February 12, 2026Challengers
1Total Attempts
4Completions
0Avg WPM
45.38Avg Accuracy
96.19%Ranking
| Rank | User | WPM | Accuracy |
|---|---|---|---|
| 45.38 | 96.2% |
Exercise Ranking
Top typers for this exercise
Total Participants
1
Period
All Time
Total Challenges (All Users)
4
Total Practice Time (All Users)
00:01:50
Total Keystrokes (All Users)
429
Period
Sort
| Rank | User | wpm | Accuracy | Started/Completed | Correct/Strokes | Total Time | Last Attempt |
|---|---|---|---|---|---|---|---|
| 45.38 | 96.19% | 4/0 | 410/429 | 00:01:50 | 2/12/2026, 02:31 PM |
Ranking of 1 users