Aryan PrajapatKnowledge Contributor
How do you map the array values without using map method
How do you map the array values without using map method
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Questions | Answers | Discussions | Knowledge sharing | Communities & more.
You can map the array values without using the map method by just using the from method of Array. Let’s map city names from Countries array,
const countries = [
{ name: “India”, capital: “Delhi” },
{ name: “US”, capital: “Washington” },
{ name: “Russia”, capital: “Moscow” },
{ name: “Singapore”, capital: “Singapore” },
{ name: “China”, capital: “Beijing” },
{ name: “France”, capital: “Paris” },
];
const cityNames = Array.from(countries, ({ capital }) => capital);
console.log(cityNames); // [‘Delhi, ‘Washington’, ‘Moscow’, ‘Singapore’, ‘Beijing’, ‘Paris’]