Skip to content

Instantly share code, notes, and snippets.

@chinel
Last active March 31, 2021 07:19
Show Gist options
  • Save chinel/edf96b3033d1536ac0ac93bdbe6cd3e0 to your computer and use it in GitHub Desktop.
Save chinel/edf96b3033d1536ac0ac93bdbe6cd3e0 to your computer and use it in GitHub Desktop.
Check if a string begins with Capital Letter
const validateString = (value) => {
const FIRST_LETTER = value[0];
return FIRST_LETTER === FIRST_LETTER.toUpperCase();
}
console.log(validateString("Mart"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment