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

วิธีรับอักขระตำแหน่งคี่และคู่จากสตริง?


เราต้องเขียนฟังก์ชันที่จะลบอักขระทุกวินาที (เริ่มต้นจากอักขระตัวแรก) ออกจากสตริงและผนวกอักขระที่ถูกลบออกทั้งหมดต่อท้ายด้วย JavaScript

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

If the string is "This is a test!"
Then it should become "hsi etTi sats!"

ดังนั้น เรามาเขียนโค้ดสำหรับฟังก์ชันนี้กัน −

ตัวอย่าง

const string = 'This is a test!';
const separateString = (str) => {
   const { first, second } = [...str].reduce((acc, val, ind) => {
      const { first, second } = acc;
      return {
         first: ind % 2 === 1 ? first+val : first,
         second: ind % 2 === 0 ? second+val : second
      };
   }, {
      first: '',
      second: ''
   })
   return first+second;
};
console.log(separateString(string));

ผลลัพธ์

ผลลัพธ์ในคอนโซลจะเป็น -

hsi etTi sats!