forEach()

κΉ€ν•œλΉ›Β·2022λ…„ 9μ›” 6일
0
post-custom-banner

πŸ“˜forEach() λ©”μ„œλ“œλŠ” 주어진 ν•¨μˆ˜λ₯Ό λ°°μ—΄ μš”μ†Œ 각각에 λŒ€ν•΄ μ‹€ν–‰ν•œλ‹€.

const array1 = ['a', 'b', 'c'];

array1.forEach(element => console.log(element));

// expected output: "a"
// expected output: "b"
// expected output: "c"

arr.forEach(func(value, index, array))

ν•¨μˆ˜λ‘œ value, index, arrayλ₯Ό 전달할 수 μžˆλ‹€.

  • value : ν˜„μž¬ 순회 쀑인 μš”μ†Œ
  • index : ν˜„μž¬ 순회 쀑인 μš”μ†Œμ˜ index
  • array : λ°°μ—΄ 객체
profile
μ–•κ³  길게

0개의 λŒ“κΈ€