Here is my code
const filterByType = (target , ...element) => {
return element.reduce((start , next) =>{
if(typeof next === target){
start.push(next)
}
} , [])
}
My goal is like when I pass in
filterByType('number', 1,2,3,'ke')
and the result is [1,2,3]
bu the error shows
Uncaught TypeError: Cannot read property 'push' of undefined
I know I can use filter function but I really want to try to use reduce function to solve it ;(
Thanks for helping me.
question from:
https://stackoverflow.com/questions/66056742/undefined-shows-on-reduce-function 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…