❌ INCORRECT (Trailing Comma)
{
"name": "John",
"age": 30,
}
✅ CORRECT (No Trailing Comma)
{ "name": "John", "age": 30 }
Error Message: "Unexpected token '}' in JSON"
Solution: Remove the comma after the last property in objects and arrays.