Intro ์๋ ํ์ธ์. ์ด๋ฒ ์๊ฐ์๋ ๋ฆฌ์กํธ์์ array ๋ฐ์ดํฐ์ ๋ง์ง๋ง ์์ ์์์ border bottom line ์ถ๊ฐํ๋ ๋ฐฉ๋ฒ์ ๋ํด ์์๋ณด๊ฒ ์ต๋๋ค. How to solve the problem 1. map ํจ์๋ฅผ ์ฌ์ฉํ์ฌ ๋ฐ์ดํฐ ๋ฐฐ์ด์ ๊ธธ์ด๋ฅผ ๊ตฌํด์ค๋๋ค. const arrayLength = array.length; 2. map ํจ์์์ ํ์ฌ ๋ฐ์ดํฐ ์์์ ์ธ๋ฑ์ค ๊ฐ์ ๋ฐ์ ์ต๋๋ค. array.map((item, index) => { //... }) 3. ์ธ๋ฑ์ค ๊ฐ์ด ๋ฐฐ์ด ๊ธธ์ด๋ณด๋ค 1 ์์ ๊ฒฝ์ฐ์๋ border bottom์ ์ถ๊ฐํฉ๋๋ค array.map((item, index) => { const isLastItem = index === arrayLength - 1; return ( {item}..