We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
arr.reduce(callback[, initialValue])
var new_array = arr.map(function callback(currentValue[, index[, array]]) { // Return element for new_array }[, thisArg])
思路:将每次遍历的元素,作为传入的函数的参数,并将函数执行的结果放入新的数组中。
Array.prototype['myMap'] = function(callback) { return this.reduce((prev, currentValue, currentIndex, array) => { prev.push(callback(currentValue, currentIndex, array)) return prev }, []) }
var newArray = arr.filter(callback(element[, index[, array]])[, thisArg])
思路:和 map 类似,不同的是需要经过检验,才将遍历的当前元素放入数组中
map
Array.prototype['myFilter'] = function(callback) { return this.reduce((prev, currentValue, currentIndex, array) => { callback(currentValue, currentIndex, array) && prev.push(currentValue) return prev }, []) }
实现:[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) }, []) }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
reduce 实现 map filter 和数组扁平化
1. reduce 语法
2. map
2.1 map 语法
2.2 map 实现
思路:将每次遍历的元素,作为传入的函数的参数,并将函数执行的结果放入新的数组中。
3. filter
3.1 filter 语法
3.2 filter 实现
思路:和
map
类似,不同的是需要经过检验,才将遍历的当前元素放入数组中4. 数组扁平化
实现:[1, 2, [3, 4], [5, 6, 7]].myFlatten() // [1, 2, 3, 4, 5, 6, 7]
The text was updated successfully, but these errors were encountered: