Array Helper Methods in ES6
Callback function
Callback function ์ด๋? - MDN
: A callback function is a function passed into another function as an argument, which is then invoked inside the outer function to complete some kind of rotine or action.
์ฝ๋ฐฑ ํจ์(A)๋ ๋ค๋ฅธ ํจ์(B)์ ์ธ์๋ก ๋๊ฒจ์ง๋ ํจ์๋ก,
๋ค๋ฅธ ํจ์(B)์ ๋ด๋ถ์์ ์คํ๋๋ ํจ์(A)๋ฅผ ๋งํ๋ค.
1. map()
Returns a new array containing the results of calling
callbackFn
on every element in this array.
ex)
2. forEach()
Calls a callback function for each element in the array.
ex)
3. filter()
Returns the found element in the array, if some element in the array satisfies the testing callback function, or undefined if not found.
ex)
4. find()
Returns the found element in the array, if some element in the array satisfies the testing callback function, or undefined if not found.
ex)
5. every()
Returns true if every element in this array satisfies the testing callback function
ex)
Last updated
Was this helpful?