第一中

var sad = "happy"

var variable = "you"+sad +""

variable // youhappy

另一种模板字符串

var sad = "happy"

var variable = `you${sad}`

variable // youhappy

相关文章:

  • 2021-04-27
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-25
  • 2021-11-27
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-29
  • 2021-07-31
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案