Add parentheses to Array.prototype.map
This commit is contained in:
@ -6,7 +6,7 @@ tags: components,array,beginner
|
||||
Renders a list of elements from an array of primitives.
|
||||
|
||||
- Use the value of the `isOrdered` prop to conditionally render a `<ol>` or `<ul>` list.
|
||||
- Use `Array.prototype.map` to render every item in `data` as a `<li>` element, give it a `key` produced from the concatenation of the its index and value.
|
||||
- Use `Array.prototype.map()` to render every item in `data` as a `<li>` element, give it a `key` produced from the concatenation of the its index and value.
|
||||
- Omit the `isOrdered` prop to render a `<ul>` list by default.
|
||||
|
||||
```jsx
|
||||
|
||||
Reference in New Issue
Block a user