1. JavaScript string.split()
string.split(separator,limit)——将字符串分割为字符串数组,并返回此数组;
separator——分割符。
limit——可选参数,分割的次数,如果无此参数为不限制次数。
返回值:字符串数组。