JSONPath: The Practical Guide to Querying Nested JSON Without Writing Loops
If you have ever had to pull a specific value from a deeply nested API response, you have probably written something like this:
const city = response.user.address.city;
// works fine, until user.address is undefined
Or a chain of map and filter call...
helloashish.hashnode.dev3 min read