摘要: isNull: function(a){ return a === null;},isUndefined: function(a){ return a === undefined;},isNumber: function(a){ return typeof a === 'number';},isString: function(a){ return typeof a === 'string';},isBoolean: function(a){ return typeof a === 'boolean';},isPrimitive: functio 阅读全文
posted @ 2013-12-21 14:59 Childhood Memory 阅读(377) 评论(0) 推荐(0) 编辑