摘要:
// 简单版 Function.prototype.bind = function(context) { var self = this; return function() { self.apply(context, arguments); }; ... 阅读全文
摘要:
var Type = (function() { var Type = {}; for (var i = 0, type; type = ['Undefined', 'Null', 'Boolean', 'Number', 'String', 'Function', 'Array', 'Object'][i++]; ) { ... 阅读全文