标签:一个 int yar spl 字符串分割 UNC item flatten log
//把多维数组转化为一维数组
var myarray1 = [[1,2,3],[4,5,6]]
function flatten(arr) {
return arr.join(‘,‘).split(‘,‘).map(function (item) {
return parseInt(item);
})
}
var b=flatten(myarray1);
console.log(b);
arr.join(‘,‘)123456将数组转化为字符串
arr.join(‘,‘).split(‘,‘) split() 方法用于把一个字符串分割成字符串数组。["1","2","3","4","5","6"]
arr.join(‘,‘).split(‘,‘).map(function (item) {
return parseInt(item); [1,2,3,4,5,6]
})
标签:一个 int yar spl 字符串分割 UNC item flatten log
原文地址:https://www.cnblogs.com/cycczh/p/11458497.html