tcking/jsriver

能用到的小技巧

Opened this issue · 1 comments

整理一些常用手段

  1. 转化为整数: var length= obj >>> 0 ;无符号右移运算符是对整数的操作,因此会首先转换为整数。

有意思