๐ย Reference
๐ย Chapter
find()
โฃ
filter()
arr.filter(callback(element[, index[, array]])[, thisArg])
- filter()
- ๊ณ ์ฐจํจ์์ด๋ค. (= ์์ ์ ๋งค๊ฐ๋ณ์์ ํจ์๋ฅผ ์ ๋ฌ๋ฐ๋๋ค.)
- ๋ฉ์๋๋ ์ฃผ์ด์ง ํจ์์ ํ
์คํธ๋ฅผ ํต๊ณผํ๋ ๋ชจ๋ ์์๋ฅผ ๋ชจ์ ์๋ก์ด ๋ฐฐ์ด๋ก ๋ฐํํ๋ค.
- ์กฐ๊ฑด์ ๋ง์กฑํ๋ ํญ๋ชฉ๋ค๋ง ๋ฐฐ์ด๋ก ๋ฐํํ๋ค.
- callback: ์ฝ๋ฐฑํจ์๊ฐ ์ฐธ์ ๋ฐํํ ๋๋ง ๊ทธ ์์๋ฅผ ๋ฐํํ๋ค.
- element: arr์ ์์๊ฐ
- index: arr์ ์ธ๋ฑ์ค ๊ฐ
- arr: arr์ ๋ฐฐ์ด
- thisArg: callback ์์์ this์ ๋ฐ์ธ๋ฉ๋๋ค.
let score = [40, 80, 75, 90, 35, 81];
let message = ["ํ๊ธธ๋", "ํํ๊ธธ๋", "ํ", "ํํํ๊ธธ๋", "๊ธธ๋์ด"];
// [90, 81]
console.log(score.filter((x) => x > 80));
// ["ํ๊ธธ๋", "๊ธธ๋์ด"]
console.log(message.filter((x) => x.length == 3));