हमें एक जावास्क्रिप्ट फ़ंक्शन लिखना है जो दो स्ट्रिंग्स में लेता है, बनाता है और एक नया स्ट्रिंग देता है जिसमें पहली स्ट्रिंग के पहले दो शब्द, दूसरे स्ट्रिंग के अगले दो शब्द, फिर पहले, फिर दूसरे और इसी तरह।
उदाहरण के लिए -
अगर तार हैं -
const str1 = 'Hello world'; const str2 = 'How are you btw';
तब आउटपुट होना चाहिए -
const output = 'HeHollw o arwoe rlyodu btw';
उदाहरण
आइए इस फ़ंक्शन के लिए कोड लिखें -
const str1 = 'Hello world'; const str2 = 'How are you btw'; const twiceJoin = (str1 = '', str2 = '') => { let res = '', i = 0, j = 0, temp = ''; for(let ind = 0; i < str1.length; ind++){ if(ind % 2 === 0){ temp = (str1[i] || '') + (str1[i+1] || '') res += temp; i += 2; }else{ temp = (str2[j] || '') + (str2[j+1] || '') res += temp; j += 2; } }; while(j < str2.length){ res += str2[j++]; }; return res; }; console.log(twiceJoin(str1, str2));
आउटपुट
कंसोल में आउटपुट निम्नलिखित है -
HeHollw o arwoe rlyodu btw