Functional Programming - Use the map Method to Extract Data from an Array

Tell us what’s happening:

Your code so far

WARNING

The challenge seed code and/or your solution exceeded the maximum length we can port over from the challenge.

You will need to take an additional step here so the code you wrote presents in an easy to read format.

Please copy/paste all the editor code showing in the challenge from where you just linked.

Replace these two sentences with your copied code.
Please leave the ``` line above and the ``` line below,
because they allow your code to properly format in the post.

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36 Edg/110.0.1587.57

Challenge: Functional Programming - Use the map Method to Extract Data from an Array

Link to the challenge:

In functional programming, the map() method is used to extract data from an array by creating a new array that contains the same number of elements as the original array, but with each element transformed in some way.

Here’s an example of using the map() method in JavaScript to extract data from an array of objects:
const users = [
{ name: ‘John’, age: 25 },
{ name: ‘Jane’, age: 30 },
{ name: ‘Bob’, age: 20 }
];

const names = users.map(user => user.name);

console.log(names); // Output: [‘John’, ‘Jane’, ‘Bob’]
In this example, the map() method is called on the users array to create a new array called names that contains only the name property of each user object. The user => user.name arrow function is used to specify how each element of the users array should be transformed to create the new names array.

Note that the map() method does not modify the original array, but instead returns a new array. This makes it a pure function, which is a key concept in functional programming.
you can applied it and get desired results i already did it on one of my client site, www dot apkaone dot com

apkaone i tested it on one of the client site.