join
方法用于将数组的元素连接在一起以创建字符串。它需要一个用于分隔字符串中数组元素的分隔符的参数。这是一个例子: var arr = [“你好”,“世界”];
var str = arr.join(“”);
//将str设置为“Hello World”
sentensify
函数内的join
方法(以及其他方法)从字符串str
的单词创建一个句子。该函数应返回一个字符串。例如,“我喜欢星球大战”将被转换为“我喜欢星球大战”。对于此挑战,请勿使用replace
方法。 join
方法。
testString: assert(code.match(/\.join/g));
- text: 您的代码不应使用replace
方法。
testString: assert(!code.match(/\.replace/g));
- text: sentensify("May-the-force-be-with-you")
应该返回一个字符串。
testString: assert(typeof sentensify("May-the-force-be-with-you") === "string");
- text: sentensify("May-the-force-be-with-you")
应该返回"May the force be with you"
。
testString: assert(sentensify("May-the-force-be-with-you") === "May the force be with you");
- text: sentensify("The.force.is.strong.with.this.one")
应该返回"The force is strong with this one"
。
testString: assert(sentensify("The.force.is.strong.with.this.one") === "The force is strong with this one");
- text: 'sentensify("There,has,been,an,awakening")
应该回归"There has been an awakening"
。'
testString: assert(sentensify("There,has,been,an,awakening") === "There has been an awakening");
```