How to implement a mapped array without map() in Javascript

WBOY
Release: 2023-05-14 20:01:04
forward
1301 people have browsed it

Mapped array without map()

Let’s introduce the map method first. The map() method returns a new array. The elements in the array are the values ​​of the original array elements after calling the function. It will process the elements in sequence according to the order of the original array elements. Note: map() does not change the original array, nor does it detect empty arrays.

Let’s implement an array mapping without map:

// array.map(function(currentValue,index,arr), thisValue)

var plants = [
    { name: "Saturn" },
    { name: "Uranus" },
    { name: "Mercury" },
    { name: "Venus" },
]
var plantsName = Array.from(plants, ({ name }) => name);
console.log(plantsName); // [ 'Saturn', 'Uranus', 'Mercury', 'Venus' ]
Copy after login

The above is the detailed content of How to implement a mapped array without map() in Javascript. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:yisu.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!