经常性的需要拼接字符串
普通做法:

const toto = 'toto'
const message = 'hello from ' + toto + '!' // hello from toto!

缺点: 很麻烦,关键是还不能换行

优雅做法:

const toto = 'toto'
const message = `hello from ${toto}!` // hello from toto!