freeCodeCamp/guide/english/certifications/javascript-algorithms-and-d.../functional-programming/split-a-string-into-an-arra.../index.md

445 B

title
Split a String into an Array Using the split Method

Split a String into an Array Using the split Method

Method

Simply split the string to create a new array of words.

A simple regular expression can be used to achieve this result.

Solution

function splitify(str) {
  // Add your code below this line
  return str.split(/\W/);
  // Add your code above this line
}
splitify("Hello World,I-am code");