TypeScript Symbol Master

Official
Symbol PracticeTypeScript
Overview

Practice typing with symbol-heavy code sentences. Get familiar with TypeScript syntax.

Rules
Mode
Single LineShuffleOff
Time Limit
1:00
Mistake Limit
Up to 10
Code 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:00
Mistake Limit
Up to 10
Created
February 12, 2026
Challengers
1
Total Attempts
4
Completions
0
Avg WPM
45.38
Avg Accuracy
96.19%
Ranking
RankUserWPMAccuracy
45.3896.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
RankUserwpmAccuracyStarted/CompletedCorrect/StrokesTotal TimeLast Attempt
45.3896.19%4/0410/42900:01:502/12/2026, 02:31 PM
Ranking of 1 users