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

ความถี่ของสระและพยัญชนะในภาษาจาวาสคริปต์


เราจำเป็นต้องเขียนฟังก์ชัน JavaScript ที่รับสตริงที่มีตัวอักษรภาษาอังกฤษ ฟังก์ชันควรส่งคืนวัตถุที่มีการนับสระและพยัญชนะในสตริง

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

ตัวอย่าง

รหัสสำหรับสิ่งนี้จะเป็น −

const str = 'This is a sample string, will be used to collect some data';
const countAlpha = str => {
   return str.split('').reduce((acc, val) => {
      const legend = 'aeiou';
      let { vowels, consonants } = acc;
      if(val.toLowerCase() === val.toUpperCase()){
         return acc;
      };
      if(legend.includes(val.toLowerCase())){
         vowels++;
      }else{
         consonants++;
      };
      return { vowels, consonants };
   }, {
      vowels: 0,
      consonants: 0
   });
};
console.log(countAlpha(str));

ผลลัพธ์

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

{ vowels: 17, consonants: 29 }