1. Extracting Configuration Keys
Frontend DeveloperBackground
A developer has a configuration object containing various UI settings and needs to map them into a list for a settings dashboard.
Problem
The object is complex and needs to be converted into an array of key-value pairs to be rendered in a table.
How to use
Input the configuration object into the tool to generate the list.
{"theme": "dark", "fontSize": 14, "showSidebar": true}Outcome
[{"key":"theme","value":"dark"},{"key":"fontSize","value":14},{"key":"showSidebar","value":true}]