किसी ऑब्जेक्ट में जावास्क्रिप्ट सरणी को फ़्लैट करने के लिए, हमने एक फ़ंक्शन बनाया जो ऑब्जेक्ट की सरणी को केवल तर्क के रूप में लेता है। यह एक चपटा वस्तु देता है जिसमें इसकी अनुक्रमणिका द्वारा कुंजी संलग्न होती है। समय जटिलता ओ (एमएन) है जहां एन सरणी का आकार है और एम प्रत्येक वस्तु में गुणों की संख्या है। हालाँकि, इसकी अंतरिक्ष जटिलता O(n) है जहाँ n वास्तविक सरणी का आकार है।
उदाहरण
//code to flatten array of objects into an object //example array of objects const notes = [{ title: 'Hello world', id: 1 }, { title: 'Grab a coffee', id: 2 }, { title: 'Start coding', id: 3 }, { title: 'Have lunch', id: 4 }, { title: 'Have dinner', id: 5 }, { title: 'Go to bed', id: 6 }, ]; const returnFlattenObject = (arr) => { const flatObject = {}; for(let i=0; i<arr.length; i++){ for(const property in arr[i]){ flatObject[`${property}_${i}`] = arr[i][property]; } }; return flatObject; } console.log(returnFlattenObject(notes));
आउटपुट
कंसोल में आउटपुट निम्नलिखित है -
[object Object] { id_0: 1, id_1: 2, id_2: 3, id_3: 4, id_4: 5, id_5: 6, title_0: "Hello world", title_1: "Grab a coffee", title_2: "Start coding", title_3: "Have lunch", title_4: "Have dinner", title_5: "Go to bed" }