Returns whether all the characters in the given text is lowercase alphanumeric
Optional
The text to check
whether all the characters in the given text is lowercase alphanumeric
David Hsing
isAlphanumericLower(undefined); // falseisAlphanumericLower('ABC123'); // falseisAlphanumericLower('abc123'); // trueisAlphanumericLower('--$$##'); // false Copy
isAlphanumericLower(undefined); // falseisAlphanumericLower('ABC123'); // falseisAlphanumericLower('abc123'); // trueisAlphanumericLower('--$$##'); // false
Returns whether all the characters in the given text is lowercase alphanumeric