JSON vs CSV

CSV is compact for tables; JSON preserves types and nested structures.

Syntax

// CSV
name,active
Alice,true

// JSON
[{"name": "Alice", "active": true}]

Explanation

Use CSV for spreadsheet exchange and JSON for complex typed data.