let text = `This is a multiline string that just works!`
// using the + operator const message1 = 'This is a long message ' + 'that spans across multiple lines ' + 'in the code.' console.log(message1)