vue语法 `${ }` (模版字符串)

摘自:https://segmentfault.com/q/1010000008876108/a-1020000008876319 

const name = '小缘'
const age = 14
console.info(`大家好,我叫${name},今年${age}岁了`)
// 等价于
console.info('大家好,我叫' + name + ',今年' + age + '岁了')

// 最大的优势是支持换行字符串
const url = '//baidu.com'
const text = '百度一下,你就知道'
const html = `
  
`
console.log(html)
console.log(typeof html)

你可能感兴趣的:(vue语法 `${ }` (模版字符串))