1、JS 字串轉化為數字陣列. let str = '1', '2', '3', '4', '5', '6' str.split(',').map(Number); //[1, 2, 3, 4, 5, 6]. 2、JS 數字陣列轉字串陣列
確定! 回上一頁