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
2
Total Attempts
12
Completions
0
Avg WPM
19.96
Avg Accuracy
93.20%
Ranking
RankUserWPMAccuracy
45.3896.2%
42.994.9%

Exercise Ranking

Top typers for this exercise

Total Participants

2

Period

All Time

Total Challenges (All Users)

12

Total Practice Time (All Users)

00:08:27

Total Keystrokes (All Users)

1,229

Period
Sort
RankUserwpmAccuracyStarted/CompletedCorrect/StrokesTotal TimeLast Attempt
45.3896.19%9/0706/75500:06:122/12/2026, 02:31 PM
42.9094.90%3/0444/47400:02:144/9/2026, 01:05 PM
Ranking of 2 users