1// our string
2let string = 'ABCDEFG';
3
4// splits every letter in string into an item in our array
5let newArray = string.split('');
6
7console.log(newArray); // OUTPUTS: [ "A", "B", "C", "D", "E", "F", "G" ]
1//split into array of strings.
2var str = "Well, how, are , we , doing, today";
3var res = str.split(",");
1const str = 'Hello!';
2
3console.log(Array.from(str)); // ["H", "e", "l", "l", "o", "!"]
1// Split string into an array of strings
2const path = "/usr/home/chucknorris"
3let result = path.split("/")
4console.log(result)
5// result
6// ["", "usr", "home", "chucknorris"]
7let username = result[3]
8console.log(username)
9// username
10// "chucknorris"
1var myString = 'no,u';
2var MyArray = myString.split(',');//splits the text up in chunks
3
1const str = 'Hello!';
2
3const arr = Array.from(str);
4//[ 'H', 'e', 'l', 'l', 'o', '!' ]