所以我试图将数组的长度作为字符串推送到另一个数组上。我的逻辑是……对于 javascript
if x = [1];
and y = [1];
我想在 for 循环中将 x.length + 1 推送到 y 数组,使其变为 1 12 123 1234
这就是我正在尝试做的事情,但要阅读
function push() { [native code] } function push() { [native code] } function push() { [native code] } function push() { [native code] }
这是我的代码
for (i=0; i < 100; i++) {
var x = [1];
var y = [1];
document.writeln(y.push.toString(x.length + 1));
};
这是逻辑错误还是语法错误?