⚡
Code Typing Speed Test
How fast can you type real code? No backspace shortcuts.
TypeScriptAngular component
Time:0s
WPM:0
Accuracy:100%
@Component({
selector: 'app-counter',
template: '<button (click)="inc()">{{ n() }}</button>'
})
export class CounterComponent {
n = signal(0);
inc() { this.n.update(v => v + 1); }
}
Click anywhere above or start typing to begin