How do I put variables inside javascript strings?

前端 未结 13 1117
感动是毒
感动是毒 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:02

    With Node.js v4 , you can use ES6's Template strings

    var my_name = 'John';
    var s = `hello ${my_name}, how are you doing`;
    console.log(s); // prints hello John, how are you doing
    

    You need to wrap string within backtick ` instead of '

提交回复
热议问题