โŒจ
PTM v2.4

AI Typing Code ยท javascript

Faster brackets, arrow functions, and semicolons

Practice the specific characters that slow JavaScript down: arrow functions, destructuring, template literals. Works for Node.js, React, and everything in between.

What you'll practice

  • โœ“arrow functions (=>)
  • โœ“template literals (`${...}`)
  • โœ“object destructuring
  • โœ“async/await chains
  • โœ“semicolons at statement end

Sample drills

hello

console.log("Hello, World!");
Practice this drill โ†’

variables

let name = "Alice";
const age = 30;
var legacy = true;
console.log(`${name} is ${age}`);
Practice this drill โ†’

Who it's for

frontend developers, Node.js engineers, full-stack teams

Also practice