Skip to content

Instantly share code, notes, and snippets.

@tin80122
Created August 19, 2019 11:30
Show Gist options
  • Save tin80122/d28f8da531944b9a5b648049867cea79 to your computer and use it in GitHub Desktop.
Save tin80122/d28f8da531944b9a5b648049867cea79 to your computer and use it in GitHub Desktop.
var detectCapitalUse = function(word) {
if(word === word.toLowerCase() || word === word.toUpperCase()){
return true;
}else if(word[0] === word[0].toUpperCase() && word.substring(1) === word.substring(1).toLowerCase()){
return true;
}else{
return false;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment