हमें एक जावास्क्रिप्ट फ़ंक्शन लिखने की आवश्यकता होती है जो दोहराए जाने वाले मानों की एक सरणी लेता है। हमारे फ़ंक्शन को सरणी में सबसे आम तत्वों की एक सरणी वापस करनी चाहिए (यदि दो या दो से अधिक तत्व समान संख्या में सबसे अधिक बार दिखाई देते हैं तो सरणी में वे सभी तत्व होने चाहिए)।
उदाहरण
इसके लिए कोड होगा -
const arr1 = ["a", "c", "a", "b", "d", "e", "f"]; const arr2 = ["a", "c", "a", "c", "d", "e", "f"]; const getMostCommon = arr => { const count = {}; let res = []; arr.forEach(el => { count[el] = (count[el] || 0) + 1; }); res = Object.keys(count).reduce((acc, val, ind) => { if (!ind || count[val] > count[acc[0]]) { return [val]; }; if (count[val] === count[acc[0]]) { acc.push(val); }; return acc; }, []); return res; } console.log(getMostCommon(arr1)); console.log(getMostCommon(arr2));
आउटपुट
और कंसोल में आउटपुट होगा -
[ 'a' ] [ 'a', 'c' ]