码迷,mamicode.com
首页 > 其他好文 > 详细

2015102201

时间:2015-10-22 12:20:20      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:

var executerQueue = []
executerQueue.exec = function() {
    if (executerQueue.length) {
        executerQueue.shift().exec()
    }
}

function F1() {
    this.exec = function() {
        console.log(‘F1‘)
    }
}

function F2() {
    this.exec = function() {
        console.log(‘F2‘)
    }
}
executerQueue.push(new F1())
executerQueue.push(new F2())
executerQueue.exec()
executerQueue.exec()
var gestures = {
    a: ‘a‘,
    b: ‘b‘
}
Object.keys(gestures).length

 技术分享

技术分享

2015102201

标签:

原文地址:http://www.cnblogs.com/jzm17173/p/4900177.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!