JavaScript中的字符串是Unicode字符序列。我们使用长度为1的字符串来表示字符。字符串可以用单引号或双引号括起来,它们在功能上等同。
要在单引号字符串中包含单引号,我们可以使用\',而对于双引号字符串中的双引号,我们可以使用\":
console.log("Javascript\"s new feature.") console.log("\"Hey, new feature!\", he said.")
上面的代码生成以下结果。
例子
要在JavaScript中获取字符串的长度,只需使用length属性:
var x = "cat"; console.log(x.length);
上面的代码生成以下结果。
要将两个字符串添加到一起,可以使用+运算符:
var s = "CSS" + " is " + "cool"; console.log(s);
上面的代码生成以下结果。
Javascript的+
可以将它们转换为最佳值:
var distance = 25;var s = "This is a test: " + distance + "."; console.log(s);
上面的代码生成以下结果。