const name = "Hello World";
const obj = {name: "Hello World Object"}
const data = ['We', 'are', 'United'] //Show these in seperate tags
const list = [{name: "Hello World 1"}, {name: "Hello World 2"}, {name: "Hello World 3"}] //Show these in seperate tags
const complex = [{company: 'XYZ', jobs: ['Javascript,' 'React']}, {company: 'ABC', jobs: ['AngularJs' 'Ionic']}]
const posts = https://jsonplaceholder.typicode.com/posts //copy the array from this link
const users = https://jsonplaceholder.typicode.com/users //copy the array from this link
//DON'T USE FETCH FOR NOW
Using above API's, you've to render all the users with their names, emails and their posts.
Use id
as a key with each data rendering.