Regex

In Code Like A Girl. More on Medium.

Photo by Amador Loureiro on Unsplash
const isLowercaseOnly = (string) => {
const nonLowercaseLetters = /[^a-z]/g;
return !nonLowercaseLetters.test(string);
};

Code Like A Girl

A space that celebrates Women in Technology.

Get the Medium app

A button that says 'Download on the App Store', and if clicked it will lead you to the iOS App store
A button that says 'Get it on, Google Play', and if clicked it will lead you to the Google Play store