Node.js examples for String:Char
Is Char Capital Letter
function isCharCapitalLetter ( char ) { return char >= 'A' && char <= 'Z'; }