Q
How do you include a newline character in a JavaScript string?

Answer & Solution

Answer: Option A
Solution:
The newline character in JavaScript is represented by \n.
Related Questions on Average

How can you include a backslash in a JavaScript string?

A). \\\

B). \\

C). \\

D). \\\\

What is the effect of using \r in a string?

A). Inserts a space

B). Moves to the beginning of the line

C). Inserts a newline

D). Inserts a tab

How do you include a form feed character in a JavaScript string?

A). \f

B). \ff

C). \form

D). \feed

Which escape sequence is used for a backspace character?

A). \b

B). \back

C). \backspace

D). \bs

How do you include a null character in a JavaScript string?

A). \0

B). \null

C). \none

D). \zero

How do you include a Unicode character with a code point greater than FFFF?

A). \uXXXX

B). \u{XXXXX}

C). \UXXXXX

D). \uXXXXXX

What is the correct syntax for including a Unicode character in a JavaScript string?

A). \\uXXXX

B). \uXXXX

C). \u{XXXX}

D). \unicodeXXXX

Which escape sequence represents a carriage return?

A). \r

B). \n

C). \c

D). \cr

What will be the output of console.log('Hello\\nWorld');?

A). Hello World

B). Hello\nWorld

C). Hello

D). Hello

How do you include a vertical tab character in a JavaScript string?

A). \v

B). \vt

C). \vert

D). \vertical