PHP
·
发表于 5年以前
·
阅读量:8292
var array = ["a", " ", 1, "i", 6, "c", "b", " "];
var space = [];
var string = [];
var num = [];
for(var i = 0; i < array.length; i++) {
if(array[i] === " ") {
space.push(array[i])
} else {
if(typeof(array[i]) == "string") {
string.push(array[i])
} else {
if(typeof(array[i]) == "number") {
num.push(array[i])
}
}
}
}
console.log(space);
console.log(string);
console.log(num);