Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

reduce 实现 map filter 和数组扁平化 #8

Open
yeojongki opened this issue Jun 22, 2019 · 0 comments
Open

reduce 实现 map filter 和数组扁平化 #8

yeojongki opened this issue Jun 22, 2019 · 0 comments

Comments

@yeojongki
Copy link
Owner

yeojongki commented Jun 22, 2019

reduce 实现 map filter 和数组扁平化

1. reduce 语法

arr.reduce(callback[, initialValue])

2. map

2.1 map 语法

var new_array = arr.map(function callback(currentValue[, index[, array]]) {
// Return element for new_array
}[, thisArg])

2.2 map 实现

思路:将每次遍历的元素,作为传入的函数的参数,并将函数执行的结果放入新的数组中。

Array.prototype['myMap'] = function(callback) {
  return this.reduce((prev, currentValue, currentIndex, array) => {
    prev.push(callback(currentValue, currentIndex, array))
    return prev
  }, [])
}

3. filter

3.1 filter 语法

var newArray = arr.filter(callback(element[, index[, array]])[, thisArg])

3.2 filter 实现

思路:和 map 类似,不同的是需要经过检验,才将遍历的当前元素放入数组中

Array.prototype['myFilter'] = function(callback) {
  return this.reduce((prev, currentValue, currentIndex, array) => {
    callback(currentValue, currentIndex, array) && prev.push(currentValue)
    return prev
  }, [])
}

4. 数组扁平化

实现:[1, 2, [3, 4], [5, 6, 7]].myFlatten() // [1, 2, 3, 4, 5, 6, 7]

Array.prototype.myFlatten = function() {
  return this.reduce((prev, currentValue, currentIndex, array) => {
    return prev.concat(Array.isArray(currentValue) ? currentValue.myFlatten() : currentValue)
  }, [])
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant