How do I put variables inside javascript strings?

前端 未结 13 1093
感动是毒
感动是毒 2020-12-12 15:12
s = \'hello %s, how are you doing\' % (my_name)

That\'s how you do it in python. How can you do that in javascript/node.js?

相关标签:
13条回答
  • 2020-12-12 16:09

    Try sprintf in JS or you could use this gist

    0 讨论(0)
提交回复
热议问题