
JavaScript字符串连接方式
// 举例
var ourStr = "I come first. " + "I come second.";
// Only change code below this line
var myStr="This is the start. "+"This is the end.";
// 举例
var ourStr = "I come first. " + "I come second.";
// Only change code below this line
var myStr="This is the start. "+"This is the end.";
关闭