THE DEV BENCH
🧾 JSONmedium

4. Fix the broken JSON

This config is INVALID JSON — it has the three most common mistakes: a comment, single quotes, and a trailing comma. Fix it so it parses to: name = "api", retries = 3, debug = false.

How to approach this

JSON is stricter than JavaScript: NO comments (// or /* */), keys and strings must use DOUBLE quotes (not single), and NO trailing comma after the last item. These three are the errors you'll hit most often when hand-editing config.

config.json