Returns whether all the characters in the given text is alphanumeric
Optional
the text to check
whether all the characters in the given text is alphanumeric
isAlphanumeric(undefined); // falseisAlphanumeric('abc123'); // trueisAlphanumeric('--$$##'); // false Copy
isAlphanumeric(undefined); // falseisAlphanumeric('abc123'); // trueisAlphanumeric('--$$##'); // false
Returns whether all the characters in the given text is alphanumeric