1. 程式人生 > >js如何實現字串轉換成陣列

js如何實現字串轉換成陣列

        var string = "a,b,c";
        var stringArr= string.split(",");
        console.log(stringArr);