首页 > 其他 > 详细

?【微博】傻傻分不清楚

时间:2014-03-28 14:54:00      阅读:448      评论:0      收藏:0      [点我收藏+]

bubuko.com,布布扣

bubuko.com,布布扣
var arr = []
var index = 0
var postfix = 0
for (; index < 10; index++) {
    postfix = 0
    console.log(postfix) // 0 0 0 0 0 0 0 0 0 0
    for (; postfix < 100; postfix++) {
        arr.push(index * 100 + postfix)
    }
}
console.log(arr, arr.length) // ... 1000

arr = []
index = 0
postfix = 0
for (; index < 10; index++) {
    console.log(postfix) // 0 100 100 100 100 100 100 100 100 100
    for (; postfix < 100; postfix++) {
        arr.push(index * 100 + postfix)
    }
}
console.log(arr, arr.length) // ... 100
bubuko.com,布布扣

?【微博】傻傻分不清楚,布布扣,bubuko.com

?【微博】傻傻分不清楚

原文:http://www.cnblogs.com/jzm17173/p/3630278.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!