Count how many vowels and consonants occur in a string: Difference between revisions

m
(Add Plain English)
Line 906:
vctally 'Forever Action! programming language'
13 13</syntaxhighlight>
 
An alternative expression for <code>consonant</code> could be:
 
<syntaxhighlight lang="j">consonant=: (a.#~2|'@Z`z'I.a.) -. vowel</syntaxhighlight>
 
=={{header|JavaScript}}==
6,951

edits