← Back to Challenges
intermediate Time limit: 1:00

Fix Indentation

Fix the indentation of a badly formatted code block.

Commands
V=

Fix Indentation

Fix the indentation of a badly formatted code block.

Time
0:00
/ 1:00
Editor0 keys
1function add(a, b) {
2let sum = a + b;
3 return sum;
4 }
-- NORMAL --fix-indentation
Target
1function add(a, b) {
2 let sum = a + b;
3 return sum;
4}
-- NORMAL --fix-indentation
⚠ Guest mode — Sign in to save your progress and score