string 객체를 지정한 구분자를 이용해 여러 개의 문자열로 분할한다.
string.split();
매개변수로는 seperator, limit가 올 수 있다.
seperator는 문자열을 끊어야할 부분을 나나태는 문자열을 나타낸다.
seperator를 입력하지 않으면 문자열 전체를 배열에 담아 리턴한다.
limit는 최대 분할 갯수를 나타내는 정수이다.
두 매개변수는 모두 필수가 아니다.
const word = 'hello world';
console.log(word.split());
파라미터를 입력하지 않을 경우 문자열 그 자체가 배열에 리턴된다.
const word = 'hello world';
console.log(word.split(" "));
seperator로 " "를 지정할 경우 문자열을 단어별로 구분해 배열에 리턴된다.
const word = 'hello world';
console.log(word.split(""));
seperator로 ""를 지정할 경우 문자열 한글자씩 배열에 리턴되며 공백 또한 문자열로 취급된다.