How to use lodash to remove keys from a JSON object?
Clash Royale CLAN TAG #URR8PPP How to use lodash to remove keys from a JSON object? I've been trying to transform some data using lodash without success. I am really new to javascript and lodash. How can I get the expected result? I've used mapValues and chain , but I didn't achieve anything good. mapValues chain const data = { "north": [ { "2018-07-01": { "date": "2018-07-01", "name": "david", "age": 11 }, "2018-07-02": { "date": "2018-07-02", "name": "damo", "age": 16 }, "2018-07-03": { "date": "2018-07-03", "name": "dani", "age": 12 } } ], "south": [ { "2018-07-01": [ { "fruit": "banana", ...