Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Add special characters and issues sections

Strings are created by enclosing Unicode characters in double quotes. You Strings are UTF-8 encoded.

Special characters

The only special character is ". You can put a double quote inside a string by escaping it with a backslash:

...

a

...

=

...

"I

...

can

...

put

...

a

...

quote

...

character,

...

\",

...

in

...

my

...

string

...

using

...

a

...

backslash"

 

Strings can span multiple lines:

Code Block
languagejavascript
themeConfluence
a = "how to add a'
' character"

// -> "how to add a '\n' character"

 

Strings are UTF-8 encoded.A newline (\n) requires a line break:

b = "
"

Other characters can be inserted literally, although some text editors are better at this than others.

Issues