join
method is used to join the elements of an array together to create a string. It takes an argument for the delimiter that is used to separate the array elements in the string.
Here's an example:
var arr = ["Hello", "World"];
var str = arr.join(" ");
// Sets str to "Hello World"
join
method (among others) inside the sentensify
function to make a sentence from the words in the string str
. The function should return a string. For example, "I-like-Star-Wars" would be converted to "I like Star Wars". For this challenge, do not use the replace
method.
join
method.
testString: 'assert(code.match(/\.join/g), ''Your code should use the join
method.'');'
- text: Your code should not use the replace
method.
testString: 'assert(!code.match(/\.replace/g), ''Your code should not use the replace
method.'');'
- text: sentensify("May-the-force-be-with-you")
should return a string.
testString: 'assert(typeof sentensify("May-the-force-be-with-you") === "string", ''sentensify("May-the-force-be-with-you")
should return a string.'');'
- text: sentensify("May-the-force-be-with-you")
should return "May the force be with you"
.
testString: 'assert(sentensify("May-the-force-be-with-you") === "May the force be with you", ''sentensify("May-the-force-be-with-you")
should return "May the force be with you"
.'');'
- text: sentensify("The.force.is.strong.with.this.one")
should return "The force is strong with this one"
.
testString: 'assert(sentensify("The.force.is.strong.with.this.one") === "The force is strong with this one", ''sentensify("The.force.is.strong.with.this.one")
should return "The force is strong with this one"
.'');'
- text: 'sentensify("There,has,been,an,awakening")
should return "There has been an awakening"
.'
testString: 'assert(sentensify("There,has,been,an,awakening") === "There has been an awakening", ''sentensify("There,has,been,an,awakening")
should return "There has been an awakening"
.'');'
```