Is Char Letter - Node.js String

Node.js examples for String:Char

Description

Is Char Letter

Demo Code

function isCharLetter ( char )
{
  return ( char >= 'a' && char <= 'z' ) || (  char >= 'A' && char <= 'Z'  );
}

Related Tutorials