var text = 'This is some text...'; var array = text.split(' ', 2); // maximum result array size will be 2 console.log(array); // ['This','is']
確定! 回上一頁