Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Learn Multiline Strings. Concatenating | JavaScript syntax
Introduction to JavaScript (staging)

Sign up to start

or email

eye-icon

By continuing I agree with Terms & conditions,

 Privacy policy, Cookie policy

book
Multiline Strings. Concatenating

Concatenating Multiple Lines

We can implement a multi-line string by concatenation of every line of the multi-line string to the variable. Below we have a code example for it:

let myStr = "This is my" +
" multiline String " +
" which is amazing";
console.log(myStr);
1234
let myStr = "This is my" + " multiline String " + " which is amazing"; console.log(myStr);
copy
Task

Swipe to start coding

Take two variables named firstPart and secondPart and assign the values of "This is a" and " JavaScript book." respectively. The task is to concatenate the above variables using the + operator and store the concatenated string in a variable named book, and show value on the console.

Solution

const firstPart = "This is a";
const secondPart = " JavaScript book.";

const book = firstPart + secondPart;
console.log(book);

Summary:

  • A string which comes on more than one line in the code is called Multiline String.
  • Template literals are used to implement multi-line string by using backticks.
  • Backslashes are used to implement multiline string.
  • Concatenation is used to implement multiline string.

Everything was clear?

How can we improve it?

Thanks for your feedback!

Section 2. Chapter 13

toggle bottom row
We use cookies to make your experience better!
some-alt