C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
React MapA map is a data collection type where data is stored in the form of pairs. It contains a unique key. The value stored in the map must be mapped to the key. We cannot store a duplicate pair in the map(). It is because of the uniqueness of each stored key. It is mainly used for fast searching and looking up data. In React, the ?map? method used to traverse and display a list of similar objects of a component. A map is not the feature of React. Instead, it is the standard JavaScript function that could be called on any array. The map() method creates a new array by calling a provided function on every element in the calling array. ExampleIn the given example, the map() function takes an array of numbers and double their values. We assign the new array returned by map() to the variable doubleValue and log it. var numbers = [1, 2, 3, 4, 5]; const doubleValue = numbers.map((number)=>{ return (number * 2); }); console.log(doubleValue); In React, the map() method used for:1. Traversing the list element. Example import React from 'react'; import ReactDOM from 'react-dom'; function NameList(props) { const myLists = props.myLists; const listItems = myLists.map((myList) => React Map Example
Output 2. Traversing the list element with keys. Example import React from 'react'; import ReactDOM from 'react-dom'; function ListItem(props) { return React Map Example
Output
Next TopicReact Table
|