1. 程式人生 > >字符串轉為數組

字符串轉為數組

nbsp 數組 pre pan div var code bsp span

1 var s = "111,222,333,444";
2 var arr = s.split(",");
3 //arr即是轉化後的數組

字符串轉為數組