Quick actions

cmd+k|ctrl+k

Navigation

Languages

Count Vowels

Snippet info

Language

JavaScript

Visibility

public

Author

asepkhabril20

Created

2024-11-03T10:42:24.922926Z

Updated

2024-11-03T10:42:24.922926Z

function countVowels (sentence) {
    const vowels = 'aiueoAIUEO';
    let count = 0;
    for (let char of sentence) {
        if (vowels.includes(char)) {
            count++
        }
    }
    return count;
}

const Sentence = countVowels('Saya Suka Sama Kamu');

console.log(`Jumlah Vokak : ${Sentence}`);
INFO