Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

การรวมสองสตริงด้วยสองคำในแต่ละครั้ง - JavaScript


เราจำเป็นต้องเขียนฟังก์ชัน JavaScript ที่รับในสองสตริง สร้างและส่งกลับสตริงใหม่ที่มีสองคำแรกของสตริงแรก สองคำถัดไปของสตริงที่สอง จากนั้นก่อน จากนั้นจึงตามด้วยที่สองเป็นต้น

ตัวอย่างเช่น −

หากสตริงเป็น −

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