🧾 JSONeasy
1. Your first JSON object
Write a JSON object describing a service with three fields: • name — the string "web" • port — the number 8080 (a number, NOT a string) • enabled — the boolean true
How to approach this
JSON objects use { } with double-quoted keys and values separated by colons. Strings need double quotes; numbers and booleans (true/false) do NOT. The #1 beginner bug is quoting a number ("8080") — that makes it a string, and most tools will reject or mishandle it.
config.json