Get rid of escaping quotes with template literal

You can use the template literal syntax in ES6 to get rid of escaping quote. For example:
// Instead of
const message = "It's a message";
// We can do this which is more convenient
const message = `It's a message`;

See also