How do you write multi-line strings in template literals? In ES5, you would have to use newline escape characters(‘\n’) and concatenation symbols(+) in order to get multi-line strings.
1 2 | console.log('This is string sentence 1\n' + 'This is string sentence 2'); |
Whereas in ES6, You don’t need to mention any newline sequence character,
1 2 | console.log(`This is string sentence 'This is string sentence 2`); |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.