摘要: // 简单版 Function.prototype.bind = function(context) { var self = this; return function() { self.apply(context, arguments); }; ... 阅读全文
posted @ 2017-07-03 11:00 Sorrow.X 阅读(369) 评论(0) 推荐(0) 编辑
摘要: var Type = (function() { var Type = {}; for (var i = 0, type; type = ['Undefined', 'Null', 'Boolean', 'Number', 'String', 'Function', 'Array', 'Object'][i++]; ) { ... 阅读全文
posted @ 2017-07-03 10:43 Sorrow.X 阅读(380) 评论(0) 推荐(0) 编辑