1
我在拼寫字符串時遇到了困難。TypeScript中的字符串串聯
代碼:
var info= {user:'med'};
console.log('le nom est:${info.user}');
結果是:
樂NOM斯:$ {} info.user
如何串聯2個字符串打字稿?
我在拼寫字符串時遇到了困難。TypeScript中的字符串串聯
代碼:
var info= {user:'med'};
console.log('le nom est:${info.user}');
結果是:
樂NOM斯:$ {} info.user
如何串聯2個字符串打字稿?
console.log(`The name is: ${info.user}`);