콜백함수를 활용하는 함수 : map() 메서드
배열이 갖고 있는 메서드
콜백함수에서 리턴한 값들을 기반으로 새로운 배열을 만듬
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script>
//배열을 선언
let numbers = [273, 52, 103, 32, 57];
let numbers2 = numbers.map(function (value, index, array) {
return value * value;
});
console.log(numbers2) // (5)[74529, 2704, 10609, 1024, 3249]
numbers2.forEach(console.log); // value, index, array 순서대로 출력
</script>
</head>
<body>
</body>
</html>