중요한 JavaScript 배열 방법
코딩하는 동안 코드 어딘가에 배열이 반드시 필요합니다. 그리고 배열을 사용해 본 적이 있다면 배열을 통해 루프를 작동하는 방법을 알아야 합니다.
그래서 기본적으로 이 블로그에서는 가장 많이 사용되는 자바스크립트 배열 방식에 대해 알아보도록 하겠습니다. 예, 올바르게 추측하셨습니다.
map()
방법입니다.지도()
map()
방법을 언제 어디서 사용해야 하는지 혼동하지 않도록 아래에 적힌 모든 사항을 기억하십시오.통사론
const array = [2, 4, 5, 6]
// it takes a callback function
// array.map(callbackFn())
// parameters of callback function
// 1. callbackFn(element)
// 2. callbackFn(element, index)
// 3. callbackFn(element, index, arrary) the 3rd one is the original array where we are using map()
3문항으로 자바스크립트
map()
를 배워보겠습니다.질문 1
// Create a new array based on the given array with twice every element.
// double [2, 6, 4, 16, 18, 10, 2, 14]
const myArray = [1, 3, 2, 8, 9, 5, 1, 7]
const doubledArray = myArray.map((el) => el * 2)
질문 2
// Create a new array based on the given array with the sum of index + element at that index.
// double [1, 4, 4, 11, 18, 10, 2, 14]
const myArray = [1, 3, 2, 8, 9, 5, 1, 7]
질문 3
// create a new array based on the given array object, the new array should contain
const items = [
{
id: 1,
fName: 'John',
lName: 'Doe',
},
{
id: 2,
fName: 'Julia',
lName: 'Green',
},
{
id: 3,
fName: 'Thomas',
lName: 'Freguson',
},
{
id: 4,
fName: 'Jane',
lName: 'Smith',
},
{
id: 5,
fName: 'Maria',
lName: 'Reese',
},
]
const newItems = items.map((el) => `${el.fName} ${el.lName}`)
// ['John Doe', 'Julia Green', 'Thomas Freguson', 'Jane Smith', 'Maria Reese']
javascript에서
map()
메서드를 언제 사용해야 하는지 이해하셨기를 바랍니다.질문이 있으시면 댓글에 게시하실 수 있습니다.
에서 나와 연결할 수도 있습니다.
Reference
이 문제에 관하여(중요한 JavaScript 배열 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/shubhamku044/important-javascript-array-method-15oj텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)