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

Answer & Solution

Answer: Option B
Solution:
The escape sequence \n creates a newline, so the output will be: Hello (new line) World.
Related Questions on Average

Which escape sequence is used for a tab character in JavaScript?

A). \t

B). \tab

C). \tspace

D). \tabspace

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 an alert sound character in a JavaScript string?

A). \a

B). \alert

C). \b

D). \bell

What is the correct way to include double quotes in a string?

A). \'

B). \q

C). \'

D). \quotes

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

A). \n

B). \newline

C). \r

D). \newl

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

A). \\uXXXX

B). \uXXXX

C). \u{XXXX}

D). \unicodeXXXX

What does \uXXXX represent in JavaScript?

A). A hex value

B). An ASCII character

C). A Unicode character

D). A URL

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 purpose of using escape characters in JavaScript strings?

A). To format text

B). To include special characters

C). To execute code

D). To debug code