You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Creates an array of elements, grouped based on the position in the original arrays.
Use Math.max.apply() to get the longest array in the arguments. Creates an array with that length as return value and use Array.from()with a map-function to create an array of grouped elements. If lengths of the argument-arrays vary, undefined is used where no value could be found.
Given an array of valid property identifiers and an array of values, return an object associating the properties to the values.
Since an object can have undefined values but not undefined property pointers, the array of properties is used to decide the structure of the resulting object using Array.reduce().
Creates an array of elements, grouped based on the position in the original arrays and using function as the last value to specify how grouped values should be combined.
Check if the last argument provided in a function. Use Math.max() to get the longest array in the arguments. Creates an array with that length as return value and use Array.from() with a map-function to create an array of grouped elements. If lengths of the argument-arrays vary, undefined is used where no value could be found. The function is invoked with the elements of each group (...group).
Splits values into two groups. If an element in filter is truthy, the corresponding element in the collection belongs to the first group; otherwise, it belongs to the second group.
Use Array.reduce() and Array.push() to add elements to groups, based on filter.
Splits values into two groups according to a predicate function, which specifies which group an element in the input collection belongs to. If the predicate function returns a truthy value, the collection element belongs to the first group; otherwise, it belongs to the second group.
Use Array.reduce() and Array.push() to add elements to groups, based on the value returned by fn for each element.
without
剔除掉数组中所有存在于所指定的元素们的项。
使用
Array.filter()
创建一个将所有提供的值排除在外(使用!Array.includes()
)的数组。filter
和includes
结合,把数组arr
中所有存在于指定的元素值…args
中的项排除在外,很清爽干净。xProd
创建一个新数组,数组元素由两个数组的元素交叉组合而成。
使用
Array.reduce()
,Array.map()
和Array.concat()
来创建由两个数组元素拼接而成的所有可能对并将它们存在一个数组中的数组。reduce
初始值acc
是一个空数组[]
,随着遍历的进行acc
会concat
生成的元素组合对的数组。组合对就是由b.map(v => [val, v]
生成的。也就是reduce
遍历一次时,数组a
的一个元素分别和数组b
的所有元素分别组成一对。zip
创建一个数组,数组元素由指定的多个数组根据位置对应分组而成的数组构成。例如,多个数组的第一个元素组成一个新数组,第二个元素组成一个新数组,依次类推。最终把所有分类号的数组存到一个数组中。
先使用
Math.max.apply()
来计算出最终成组的长度,然后使用该长度结合Array.from()
和map
去遍历创建该数组的所有分组子数组。如果其中任意一个数组在对应位置上元素不存在(如长度为2
的数组试图获取第3
个元素)则undefined
将被使用。这是最终分成
maxLength
组,比如一个数组含有100
个元素,另一个数组含有1
个元素,最终要分成100
组,所以需要用Math.max()
去获取所有数组中长度最长的那个。使用
Array.from
结合length
生成长度为maxLength
的数组这没啥说的了,重点是map
后的方法,map
的每一个数组里包含多少个元素才可以呢?稍微想一下就知道,应该是arrays
的个数,因为每一个数组都要拿一个出来组装。所以这里又用了一个Array.from
配上length: arrays.length
来定一个数组里包含的元素数量。那么这些元素由什么组成呢?这里还是要配合一个(_, k) => arrays[k][i])
方法去取arrays的元素。获取的是对应每一个数组的第i
个元素。zipObject
提供一个有效的属性标识符的数组和一个含值数组,返回一个把属性和值拼合的对象。即有效的属性标识符数组的第一项为键,含值数组的第一项为值,依次类推。
由于一个对象值可以为
undefined
而键不能为undefined
,所以只有有效的属性标识符数组能用来决定了对象的组成结构。因而使用Array.reduce()
对该数组进行相关操作。JavaScript的逗号运算符是指按照顺序执行表达式,最终返回最后一个表达式的运行结果。对于这个例子来说,就是先创造一个键值对,最后返回该对象。换一般的写法就是如下:
这点弄通了就好理解了。
实际上就是以
props
数组为基准,对其运用reduce
方法去遍历数组,初始值obj
是一个空对象{}
,遍历过程以props
数组的值prop
为键,props
数组当前索引index
为索引去取values
数组的项为值组装成对象并返回。由于对象的键不能为
undefined
,因此,如果数组props
的长度比数组values
小,那么values
多出来的那些项就不管了。如果相反,那么该对象相应键的值为undefined
。zipWith
创建一个数组,数组元素由指定的多个数组根据位置对应分组而成的数组构成,然后分组后的数组元素应用指定方法进行结合。
首先这里把参数长度
arrays.length
存到length
里,然后根据参数长度length
判断参数里是否指定了某个方法。如果length
小于等于1
,则没有传入指定方法,因而fn = undefined
;否则,认为参数的最后一个arrays[length - 1]
传入了方法。接下来还得判断
fn
是不是一个function
,如果是,arrays.pop()
把方法剔除,只留数组,然后返回fn
赋值给fn
;否则把undefined
赋值给fn
。其实我觉得这里和前面的写重复了,我觉得
fn = typeof fn === 'function' ? (arrays.pop(), fn) : undefined
改成下面更好:这样就避免了
fn
的重复赋值了。因为fn = typeof fn === 'function' ? (arrays.pop(), fn) : undefined
这一行的作用就是为了把方法pop
出去而已,没必要再重新赋值。这一行计算出最终返回数组的长度,这点易证,不展开。
这里其实和前面的
zip
方法是一样的,到现在为止返回的result
是和zip
的结果是一样的。然后判断
fn
是不是非undefined
,如果是不用处理直接返回result
,否则对result
数组所有元素调用fn
方法并返回结果。需要注意的是参数…arr
是需要展开的,参数不是单个的数组元素,而是数组的所有元素。到目前为止,我已经把数组的都过了一遍了,不过因为这个 30 seconds of code一直在开发当中,所以在我翻译过程中,数组的项又增加了很多个,下面部分为新增的项。
all
如果数组所有元素为真,返回
true
,否则返回false
。使用
Array.every(Boolean)
来检测数组所有元素是否都为真。这其实就是
Array.every()
函数能做的事情。参数为Boolean
就是判断是不是数组所有元素布尔为都为真。allBy
如果数组所有元素应用了指定的断言方法都为真,那么返回
true
,否则返回false
。使用
Array.every()
结合fn
来检测数组所有元素调用fn
后布尔值是否都为真。比
all
多了一个fn
方法而已,只需要把every
的参数换成fn
就行,这没啥可说的。any
如果一个数组中至少有一个元素布尔值为真,返回
true
,否则返回false
。使用
Array.some(Boolean)
来检测数组中是否有一个元素布尔值为真。这就是
Array.some()
可以做的事情,没啥可说。anyBy
如果对一个数组的元素运用指定的断言方法后至少有一个结果布尔值为真,返回
true
,否则返回false
。使用
Array.some()
结合fn
检测一个数组中调用指定断言方法后至少有一个结果布尔值为真。比
any
多了一个fn
方法而已,只需要把some
的参数换成fn
就行,这没啥可说的。bifurcate
把一个数组分裂成两组。如果一个元素在
filter
中对应值是truthy
,那么相应位置的被分裂元素归属于第一个组,否则归属于第二个组。使用
Array.reduce()
和Array.push()
在filter
的基础上把待分裂的元素添加到相应的组中。reduce
初始值acc
是一个含有两个空数组的二维数组[[], []]
,遍历过程中去判断对应索引filter
的值filter[i]
是否为truthy
,若真,则把当前索引对应元素val
加到acc[0]
中;否则加到acc[1]
中。遍历结束,分组完成。bifurcateBy
根据提供的断言方法将一个数组分裂成两组。如果断言结果为
truthy
,该元素将被分配到第一组,否则分配在第二组。使用
Array.reduce()
和Array.push()
在断言方法fn
的基础上将待分裂的元素添加到相应的组中。跟
bifurcate
相比不同的地方是:这里是对数组的元素
val
调用指定方法,而bifurcate
是对应位置filter[i]
的直接结果。其余都是一样的。这也很好理解了。The text was updated successfully, but these errors were encountered: