阅读underscore源码笔记

nderscorejs,一个实用的的Javascript函数库,值得推荐, 官网地址Github仓库有注释的源码
  • obj.length === +obj.length 判断obj.length是不是一个数字,“+”会吧非number类型的值尝试转换为number类型,如果失败返回NAN。
  • void 0 这个相信大家经常见,但是你明白它是做什么的吗?而且我们遇到的情况大多都是在超链接里写着Javascript:(void 0),现在我又遇到了a === void 0,好吧,不买官子了,其实这个是用来防止undefined被重置(关于这一点可以点击这里查看),而void是一个修饰参数的前缀关键字,并且永远返回undefined,因此在超链接里使用void 0就清晰了,返回undefined就阻止了a标签的默认事件。例如:
1
2
3
4
5
void 0
void (0)
void "hello"
void ( new Date())
//都将返回undefined

为什么使用0,我只想说呵呵,谁让0最短小可爱呢。

  • ECMAScript5中的bind,underscore的实现方法
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
var nativeBind = FuncProto.bind;
var Ctor = function (){};
_.bind = function (func, context) {
   var args, bound;
   if (nativeBind && func.bind === nativeBind) return nativeBind.apply(func, Array.prototype.slice.call(arguments, 1));
   if (!_.isFunction(func)) throw new TypeError( 'Bind must be called on a function' );
   args = Array.prototype.slice.call(arguments, 2);
   bound = function () {
     if (!( this instanceof bound)) return func.apply(context, args.concat(Array.prototype.slice.call(arguments)));
     Ctor.prototype = func.prototype;
     var self = new Ctor;
     Ctor.prototype = null ;
     var result = func.apply(self, args.concat(Array.prototype.slice.call(arguments)));
     if (_.isObject(result)) return result;
     return self;
   };
   return bound;
};

  bind很多人不明白为什么在有了call和apply还是要出个bind,看完这段代码大家应该明白了吧,其实就是内存驻留版的apply(更多详情前点击这里)。

 

其实这个库结构很简单,但是却实现了很多实用的功能函数,下面在copy一段比较实用函数。

复制代码
 1 _.isEmpty = function(obj) {
 2   if (obj == null) return true;
 3   if (_.isArray(obj) || _.isString(obj) || _.isArguments(obj)) return obj.length === 0;
 4   for (var key in obj) if (_.has(obj, key)) return false;
 5   return true;
 6 };
 7 _.isElement = function(obj) {
 8   return !!(obj && obj.nodeType === 1);
 9 };
10 _.isArray = nativeIsArray || function(obj) {
11   return toString.call(obj) === '[object Array]';
12 };
13 _.isObject = function(obj) {
14   var type = typeof obj;
15   return type === 'function' || type === 'object' && !!obj;
16 };
17 _.isNaN = function(obj) {
18   return _.isNumber(obj) && obj !== +obj;
19 };
20 _.isBoolean = function(obj) {
21   return obj === true || obj === false || toString.call(obj) === '[object Boolean]';
22 };
23 _.has = function(obj, key) {
24   return obj != null && hasOwnProperty.call(obj, key);
25 };
复制代码
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值