--- id: 587d7daa367417b2b2512b6c title: Combine an Array into a String Using the join Method challengeType: 1 forumTopicId: 18221 localeTitle: Объединение массива в строку Использование метода объединения --- ## Description
Метод join используется для объединения элементов массива вместе для создания строки. Он принимает аргумент для разделителя, который используется для разделения элементов массива в строке. Вот пример:
var arr = ["Hello", "World"];
var str = arr.join ("");
// Устанавливает str для «Hello World»
## Instructions
Используйте метод join (среди других) внутри функции sentensify чтобы сделать предложение из слов в строке str . Функция должна возвращать строку. Например, «I-like-Star-Wars» будет преобразован в «Мне нравятся« Звездные войны ». Для этой задачи не используйте метод replace .
## Tests
```yml tests: - text: Your code should use the join method. testString: assert(code.match(/\.join/g)); - text: Your code should not use the replace method. testString: assert(!code.match(/\.replace/g)); - text: sentensify("May-the-force-be-with-you") should return a string. testString: assert(typeof sentensify("May-the-force-be-with-you") === "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"); - 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"); - 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"); ```
## Challenge Seed
```js function sentensify(str) { // Add your code below this line // Add your code above this line } sentensify("May-the-force-be-with-you"); ```
## Solution
```js function sentensify(str) { // Add your code below this line return str.split(/\W/).join(' '); // Add your code above this line } ```