使用模板字符串。here is the example,var val = 'fortnite'var x = 'I play ${val}';console.log(x); // I play fortniteval = 'pubg'console.log(x); // I play pubg//so I have made that dynamic using template strings. Use ` key instead for quotes.[![This is the key][1]][1]