Array.prototype.map()
const arr = [1, 2, 3, 4];
const maparr = arr.map(x => x + 10);
console.log(maparr); //11, 12, 13, 14
기존 배열을 복사해 새로운 배열을 만들 때 사용
제곱근 만들기
const numbers = [4, 9, 16, 25];
const result = numbers.map(Math.sqrt);
console.log(resulr); // 2,3,4,5
var anims = [
{ id: 1, title: "귀멸의 칼날" },
{ id: 2, title: "주술회전" },
{ id: 3, title: "강철의 연금술사" },
{ id: 4, title: "하이큐" }
];
var titles = anims.map(anim => anim.title);
console.log(titles);
객체 타입의 변수에서 title 값만 추출하기
'웹 > JavaScript' 카테고리의 다른 글
인수 매개변수 파라미터(parameter) 아규먼트(argument) 차이 (0) | 2021.01.16 |
---|---|
ES6. Template(`) 백틱 tagged template literals (0) | 2021.01.16 |
ES6. WeakSet() (0) | 2021.01.09 |
ES6. new Set() (0) | 2021.01.08 |
ES6 Destructuring 구조 분해 할당 (0) | 2021.01.07 |
댓글