Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

How to loop through array of array of objects and put the data into table in node js

I have data like this:

Data =
            "Time": "06:04:01",
             location: canada,
            "user": [
                {
                    "name": "Drake",
                    "email": "drake@gmail.com",
                    "age": "16",
                },
                {
                    "name": "jack",
                    "email": "jack@gmail.com",
                    "age": "28",
                },
                {
                    "name": "peter",
                    "email": "sams@gmail.com",
                    "age": "20",
                },
    ]

I want to print them with console

I want to loop throught the data and print the data in a a table like this . in Node jS

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

I want to generate file with fs(file System library) and generate html file here… with table tags:

    str ="<table>
    <th>name</th>
    <th>email</th>
    <th>age</th>
    <td>";
        for(let i = 0; i < Data.user.length; i++){
          str+= JSON.stringify(Data.user[i].name);
        }
    str+= "</td><td>"
        for(let i = 0; i < Data.user.length; i++){
          str+= JSON.stringify(Data.user[i].email);
        }
    str+= "</td><td>"
        for(let i = 0; i < Data.user.length; i++){
          str+= JSON.stringify(Data.user[i].age);
        }
 str+= "</td><td></table>"
return str

I am geting data like : this

The table and everthing is okay there is something wrong with the looping or displaying.
Please help me how can I print them like this. Thank you

>Solution :

Please find the below solution:

str ="<table>
    <th>name</th>
    <th>email</th>
    <th>age</th>";
for(let i = 0; i < Data.user.length; i++){
          str+= "<tr><td>"+JSON.stringify(Data.user[i].name)+"</td><td>"+JSON.stringify(Data.user[i].email)+"</td><td>"+JSON.stringify(Data.user[i].age)+"</td></tr>";
        }
    str+= "</table>"
return str
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading