例如,每当 x 弹出时我都会得到一个字符串 (example = ".|x") 我必须将 true 推入我的数组,每当一个 '.' 弹出我必须将 false 推到我的数组中。我的问题在于,每当“|” 弹出我必须开始一行新的布尔值使其成为二维数组
function parse(str) {
let result = [];
let array = [];
for (let char of str){
if (char === "x") {
result.push(true);
} if (char === "."){
result.push(false);
} if (char === "|"){
result.push(array);
}
}
return [result];
}
this code just returns [[false, [], true]]
这是我应该得到的
[[假],[真]]
繁花如伊
扬帆大鱼
慕森卡
相关分类