如何避开 JavaScript 中意外的字符串拼接?
在连接字符串、多重字符串和数字时,请使用反引号来避免意外的字符串连接。
我们有以下选项:
const concatValue = 'John,David,Mike'; var friendNames= `${concatValue}`;
上面的值与字符串和数字连接:
var studentNameWithFriends=` ${concatValue}| 'Carol' | 24 ` ;
以下为连接的完整 JavaScript 代码:
示例
const concatValue = 'John,David,Mike'; var friendNames= `${concatValue}`; var studentNameWithFriends=` ${concatValue}| 'Carol' | 24 ` ; console.log(friendNames); console.log(studentNameWithFriends);
要运行以上程序,你需要使用以下命令:
node fileName.js.
这里,我的文件名为 demo37.js
输出
这将产生以下输出:
PS C:\Users\Amit\JavaScript-code> node demo37.js John,David,Mike John,David,Mike| 'Carol' | 24
广告