这些是我试图学习的假想中的法典。 这些变量被重新计算,以尽量减少档案规模,因此变得不可渗透。
function sort(b) {
for (var d = [], c = 0; c < this.gs.length; c++) for (var g = 0; g < this.gs[c].length; g++) d.push(this.gs[c][g]);
b && d.reverse();
return d
}
我承担这种职能时,要么不明确,要么是b的参数,要么回到2个阵列。
What does the b && d.reverse() mean? Does it mean if b has a value, reverse d?
另一种表述是:
b = this.sort(g == "left" || g == "top");
这意味着什么?