Versions Compared

Key

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

...

The length() operator returns a number that is the number of characters in the string. For example:

Code Block
languagejavascript
themeConfluence
a = "ABC"];
c = a.length(); // c = 3

...