1. 程式人生 > >模板字符串

模板字符串

pre class light ont for 模板 log ket str

模板字符串提供了另一種做字符串組合的方法。

const user = ‘world‘;
console.log(`hello ${user}`);  // hello world

// 多行
const content = `
  Hello ${firstName},
  Thanks for ordering ${qty} tickets to ${event}.
`;

模板字符串