Horje
does word start with vowel typescript Code Example
does word start with vowel typescript
const vowelsRegex: RegExp = /[aeiou]/i;

function startsWithVowel(word:string){
return !!word.charAt(0).match(vowelsRegex);
}
does word start with vowel typescript
const vowelsRegex: RegExp = /[aeiou]/i;

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




Typescript

Related
material ui with typescript Code Example material ui with typescript Code Example
em is relative to its font size Code Example em is relative to its font size Code Example
ngmodel giving error Code Example ngmodel giving error Code Example
Types and CoProducts in scala Code Example Types and CoProducts in scala Code Example
no database host was found that meets the requirements for this server. Code Example no database host was found that meets the requirements for this server. Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8