Skip to content

Instantly share code, notes, and snippets.

@crunchywelch
Created June 9, 2018 17:23
Show Gist options
  • Save crunchywelch/cf6fd4b96da4cbb77ce560d705dccd46 to your computer and use it in GitHub Desktop.
Save crunchywelch/cf6fd4b96da4cbb77ce560d705dccd46 to your computer and use it in GitHub Desktop.
var thisRegex = new RegExp('^[A-Z]');
function is_upper_AZ(x) {
return thisRegex.test(x);
}
console.log(is_upper_AZ('Dhfdsa'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment