हमें एक जावास्क्रिप्ट फ़ंक्शन लिखना आवश्यक है जो दो स्ट्रिंग्स लेता है जिसमें कुछ सामान्य तत्व हो सकते हैं / नहीं भी हो सकते हैं। यदि कोई सामान्य तत्व मौजूद नहीं है तो फ़ंक्शन को एक खाली स्ट्रिंग वापस करनी चाहिए अन्यथा एक स्ट्रिंग जिसमें दो स्ट्रिंग्स के बीच सभी सामान्य तत्व होते हैं।
हमारे दो तार निम्नलिखित हैं -
const str1 = 'Hey There!!, how are you'; const str2 = 'Can this be a special string';
उदाहरण
निम्नलिखित कोड है -
const str1 = 'Hey There!!, how are you'; const str2 = 'Can this be a special string'; const commonString = (str1, str2) => { let res = ''; for(let i = 0; i < str1.length; i++){ if(!str2.includes(str1[i])){ continue; }; res += str1[i]; }; return res; }; console.log(commonString(str1, str2));
आउटपुट
कंसोल में आउटपुट निम्नलिखित है -
e here h are