프로그래머스 리뷰 array.map() 사용하기 꿀팁

lovely·2022년 11월 25일
0
post-thumbnail
post-custom-banner

프로그래머스 연습문제
https://school.programmers.co.kr/learn/courses/30/lessons/120825

코딩테스트를 하다보면 .map()을 활용할 때가 많다.
내가 사용한 .map()은

string.split('').map((el)=>el)

이렇게 문자열을 split으로 나눈 다음 map을 돌렸다.
하지만 string을 바로 배열에 넣어주면 훨씬 간편해진다!

[...string].map((el)=>el)

스프레드 연산자를 잘 활용하자!

profile
the best FE (will be..)

0개의 댓글