JavaScript string across multiple lines

You might have noticed that if you try to have string go across multiple lines JavaScript will error out:

var myText = "This is a 
multi-line
text!";

The solution is to use what is called a backtick `

var myText =`This is a 
multi-line
text!`;