Versions Compared

Key

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

...

Examples

Example 1

Code Block
languagejs
wret = isUpper("FOOBAR");
print(wret);

Print true

Example 2

Code Block
languagejs
wret = isUpper("aAA2345f.FF");
print(wret);

Print false

Example 3

Code Block
languagejs
wret = isUpper("");
print(wret);

...