How do I put variables inside javascript strings?

前端 未结 13 1142
感动是毒
感动是毒 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 15:57

    If you are using node.js, console.log() takes format string as a first parameter:

     console.log('count: %d', count);
    

提交回复
热议问题