“Beginnt Wort mit Vokaltypscript?” Code-Antworten

Beginnt Wort mit Vokaltypscript?

const vowelsRegex: RegExp = /[aeiou]/i;

function startsWithVowel(word:string){
return !!word.charAt(0).match(vowelsRegex);
}
Scary Swan

Beginnt Wort mit Vokaltypscript?

const vowelsRegex: RegExp = /[aeiou]/i;

function startsWithVowel(word: string) {
  return !!(word.charAt(0).match(vowelsRegex));
}
Scary Swan

Ähnliche Antworten wie “Beginnt Wort mit Vokaltypscript?”

Fragen ähnlich wie “Beginnt Wort mit Vokaltypscript?”

Weitere verwandte Antworten zu “Beginnt Wort mit Vokaltypscript?” auf TypeScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen