Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Examples

Example 1

Code Block
languagejs
wret = isAlphaNumeric("foobar");
print(wret);

Print true

Example 2

Code Block
languagejs
wret = isAlphaNumeric("aaa2345G");
print(wret);

Print false

Example 3

Code Block
languagejs
wret = isAlphaNumeric("23asd.*;45");
print(wret);

...