Files
freeCodeCamp/curriculum/challenges/espanol/02-javascript-algorithms-and-data-structures/functional-programming/combine-an-array-into-a-string-using-the-join-method.md
2021-03-18 10:16:46 -07:00

2.2 KiB

id, title, challengeType, forumTopicId, dashedName
id title challengeType forumTopicId dashedName
587d7daa367417b2b2512b6c Combina un arreglo en una cadena utilizando el método "join" 1 18221 combine-an-array-into-a-string-using-the-join-method

--description--

El método join se utiliza para unir los elementos de un arreglo creando una cadena de texto. Se necesita un argumento para especificar el delimitador a utilizar para separar los elementos del arreglo en la cadena.

Aquí hay un ejemplo:

var arr = ["Hello", "World"];
var str = arr.join(" ");

str tendrá una cadena con valor Hello World.

--instructions--

Utiliza el método join (entre otros) dentro de la función sentensify para hacer una oración a partir de las palabras en la cadena str. La función debe devolver una cadena. Por ejemplo, I-like-Star-Wars se convertiría en I like Star Wars. Para este desafío, no utilices el método replace.

--hints--

Tu código debe usar el método join.

assert(code.match(/\.join/g));

Tu código no debe utilizar el método replace.

assert(!code.match(/\.?[\s\S]*?replace/g));

sentensify("May-the-force-be-with-you") debe devolver una cadena.

assert(typeof sentensify('May-the-force-be-with-you') === 'string');

sentensify("May-the-force-be-with-you") debe devolver la cadena May the force be with you.

assert(sentensify('May-the-force-be-with-you') === 'May the force be with you');

sentensify("The.force.is.strong.with.this.one") debe devolver la cadena The force is strong with this one.

assert(
  sentensify('The.force.is.strong.with.this.one') ===
    'The force is strong with this one'
);

sentensify("There,has,been,an,awakening") debe devolver la cadena There has been an awakening.

assert(
  sentensify('There,has,been,an,awakening') === 'There has been an awakening'
);

--seed--

--seed-contents--

function sentensify(str) {
  // Only change code below this line


  // Only change code above this line
}
sentensify("May-the-force-be-with-you");

--solutions--

function sentensify(str) {
  // Only change code below this line
  return str.split(/\W/).join(' ');
  // Only change code above this line
}