JavaScript Multiline Strings с использованием Template Literals

// using the + operator
const message1 = 'This is a long message\n' + 
'that spans across multiple lines\n' + 
'in the code.'

console.log(message1)
SAMER SAEID