Skip to content

Latest commit

 

History

History
 
 

02.2-maping-array-of-objects-to-li

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
tutorial

02.2 Mapping array of objects to <li>

When you are mapping an array of data to convert it into an array of HTML, you have to specify a "mapping function" that will receive each item from the original array, transform it and insert it into the new array.

For example:

const originalData = [];

const mappingFunction = (item, index) => {
  // return something in JSX.
};

const htmlList = originalData.map(mappingFunction);
// the htmlList variable now contains a new array.

📝 Instructions:

  1. Use the list-group bootstrap component to render a list of planets from a given array:
const planets = [ 'Mars', 'Venus', 'Jupiter', 'Earth', 'Saturn', 'Neptune' ];
  1. Use the .map function and make your algorithm output the following HTML:
<ul class="list-group m-5">
  <li class="list-group-item">Mars</li>
  <li class="list-group-item">Venus</li>
  <li class="list-group-item">Jupiter</li>
  <li class="list-group-item">Earth</li>
  <li class="list-group-item">Saturn</li>
  <li class="list-group-item">Neptune</li>
</ul>
  1. Include them all together inside the website.

Expected result:

list-group