เราจำเป็นต้องเขียนฟังก์ชัน JavaScript ที่รับสตริงที่มีตัวอักษรภาษาอังกฤษ เช่น −
const str = 'This is a sample string, will be used to collect some data';
ฟังก์ชันควรส่งคืนอ็อบเจ็กต์ที่มีจำนวนสระและพยัญชนะในสตริง เช่น เอาต์พุตควรเป็น -
{ vowels: 17, consonants: 29 }
ตัวอย่าง
ต่อไปนี้เป็นรหัส -
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 }