Versions Compared

Key

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

...

Examples

Example 1

Code Block
languagejs
wret = endsWith("This will return ?", "will");
print("Return " + wret);

Print false

Example 2

Code Block
languagejs
wret = endsWith("This will return ?", "n ?");
print("Return " + wret);

Print true

Example 3

Code Block
languagejs
wret = endsWith("This will return ?", "N ?");
print("Return " + wret);

...