map() - 배열 내의 모든 요소 각각에 대하여 주어진 함수를 호출한 결과를 모아 새로운 배열을 반환 구문) arr.map(callback(currentValue[, index[, array]])[, thisArg]) paramter callback - 새로운 배열의 element를 생성하는 함수 currentValue : 현재 처리할 element index (Optional) : 처리하는 현재 element의 index array (Optional) : map()을 호출한 배열, 원래 배열 thisArg (Optional) - callback을 실행할 때 this로 사용되는 값 return value 배열의 각 element를 callback 수행 후 나온 결과를 순서대로 모든 새로운 배열 예제) ..