用某方法切割字串, 以陣列印出。
Ex:
var hi ='Hi my name is jack'; hi.split(' ', 3); * 第一參用空字串切割, 第二參取出的限制數量。 印出:['Hi', 'my' , 'name'];