(標準組み込みオブジェクト > String > メソッド)
https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Global_Objects/String/split
文字列.split([区切り文字[, 最大分割回数]])
対象の文字列を指定した区切り文字で分割し、分割された文字列をそれぞれ要素として格納した配列を返す。
let months = 'Jan..Feb..Mar..Apr..May..Jun';
let monthAry = months.split('..', 3);
console.log(monthAry);
>> ["Jan", "Feb", "Mar"]