title | category | date | topics |
---|---|---|---|
Create a multiline strings |
Tip |
2021-04-13 09:03:00 +7 |
JavaScript |
To create a multiline strings, the most common way is to concatenate them as shown below:
const multilineStrings = 'This is a\n' + 'multiline\n' + 'strings';
Joining an array of strings is another approach:
const multilineStrings = ['This is a', 'multiline', 'strings'].join('\n');
ES6 introduces an easier way to do that. It uses the template literal which is delimited by backticks:
const multilineStrings = `This is a
multiline
strings`;