Child pages
  • JavaScript Basics

Versions Compared

Key

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

Table of Contents
styleupper-roman

Stoc

Introduction to JavaScript

...

Escape code

Value

\b

Backspace

\t

Horizontal tab

\n

Line feed (new line)

\v

Vertical tab

\f

Form feed

\r

Carriage return

\'

Single quote

\"

Double quote

 \\

Backslash

\OOO

Latin-1 character represented by the octal digits OOO. The valid range is 000 to 377.

\xHH

Latin-1 character represented by the hexidecimal digits HH. The valid range is 00 to FF.

\uHHHH

Unicode character represented by the hexidecimal digits HHHH.

...