Returns whether all the characters in the given text is uppercase alphanumeric
Optional
the text to check
whether all the characters in the given text is uppercase alphanumeric
David Hsing
isAlphanumericUpper(undefined); // falseisAlphanumericUpper('ABC123'); // trueisAlphanumericUpper('abc123'); // falseisAlphanumericUpper('--$$##'); // false Copy
isAlphanumericUpper(undefined); // falseisAlphanumericUpper('ABC123'); // trueisAlphanumericUpper('abc123'); // falseisAlphanumericUpper('--$$##'); // false
Returns whether all the characters in the given text is uppercase alphanumeric