Is Char Small Letter - Node.js String

Node.js examples for String:Char

Description

Is Char Small Letter

Demo Code

function isCharSmallLetter ( char )
{
  return char >= 'a' && char <= 'z';
}

Related Tutorials