1. Extracting Top Records
Background
A developer has a large JSON array containing hundreds of user logs and needs to inspect the first three entries to verify the data format.
Problem
Manually scrolling through a large JSON file is inefficient and prone to error.
How to use
Paste the full log array into the input and set the count to 3.
Array: [{"id": 1, "event": "login"}, {"id": 2, "event": "click"}, {"id": 3, "event": "scroll"}, ...], Count: 3Outcome
A concise JSON array containing only the first three log entries is returned.