मान लीजिए, हमारे पास इस तरह एक JSON सरणी है -
const arr = [{ "data": [ { "W": 1, "A1": "123" }, { "W": 1, "A1": "456" }, { "W": 2, "A1": "4578" }, { "W": 2, "A1": "2423" }, { "W": 2, "A1": "2432" }, { "W": 2, "A1": "24324" } ] }];
हमें एक जावास्क्रिप्ट फ़ंक्शन लिखना है जो एक ऐसी सरणी लेता है और इसे निम्नलिखित JSON सरणी में परिवर्तित करता है -
[ { "1": [ { "A1": "123" }, { "A1": "456" } ] }, { "2": [ { "A1": "4578" }, { "A1": "2423" }, { "A1": "2432" }, { "A1": "24324" } ] } ];
उदाहरण
const arr = [{ "data": [ { "W": 1, "A1": "123" }, { "W": 1, "A1": "456" }, { "W": 2, "A1": "4578" }, { "W": 2, "A1": "2423" }, { "W": 2, "A1": "2432" }, { "W": 2, "A1": "24324" } ] }]; const groupJSON = (arr = []) => { const preCombined = arr[0].data.reduce((acc, val) => { acc[val.W] = acc[val.W] || []; acc[val.W].push({ A1: val.A1 }); return acc; }, {}); const combined = Object.keys(preCombined).reduce((acc, val) => { const temp = {}; temp[val] = preCombined[val]; acc.push(temp); return acc; }, []); return combined; }; console.log(JSON.stringify(groupJSON(arr), undefined, 4));
आउटपुट
और कंसोल में आउटपुट होगा -
[ { "1": [ { "A1": "123" }, { "A1": "456" } ] }, { "2": [ { "A1": "4578" }, { "A1": "2423" }, { "A1": "2432" }, { "A1": "24324" } ] } ]