需要帮助连接.JS

时间:2016-02-02 08:28:28

标签: javascript string concatenation

我有以下声明。

var myStr = "This is the first sentence. ";
myStr += "This is the second sentence. ";

我的最终目标是使声明显示如下:

这是第一句话。这是第二句话。

但是当我在 console.log 中运行代码时,我得到了这个代码。

"This is the first sentence. This is the second sentence."

如何删除qoutes而不影响用作字符串的qoutes

2 个答案:

答案 0 :(得分:0)

引号由console.log添加,以将记录的值表征为字符串。

您的连接没有任何问题,一切都按预期工作。如果您需要控制确切的输出,请使用process.stdout.write insted。

答案 1 :(得分:0)

var myStr = "This is the first sentence. " + "This is the second sentence.";

仅在(。)之后需要空格,它将起作用。