myWebsite
document.title += ` ${date}`; // myWebsite 10/12/17
我怎么能以相反的方式做到这一点
我希望在标题10/12/17 myWebsite
Lodash,解决方案很好。
答案 0 :(得分:3)
您正在使用addition assignment (+=),它将新字符串附加到现有字符串的末尾。您应该手动订购字符串,而不是使用添加分配。
您可以在模板字符串中以正确的顺序设置表达式:
document.title = `${date} ${document.title}`;
或者使用字符串连接:
document.title = date + ' ' + document.title;