An open API service indexing awesome lists of open source software.

https://github.com/thangapandi-k/daily-task-day-03

Comparing two JSON having same properties without order. || Displaying flags of all countries from the data we have from "restcountries API". || Displaying Names, Regions, Sub-Region and Population of all countries from the data we have from "restcountries API".
https://github.com/thangapandi-k/daily-task-day-03

function javascript json

Last synced: about 2 months ago
JSON representation

Comparing two JSON having same properties without order. || Displaying flags of all countries from the data we have from "restcountries API". || Displaying Names, Regions, Sub-Region and Population of all countries from the data we have from "restcountries API".

Awesome Lists containing this project

README

          

# DAY 03 TASK

1. Comparing JSON without order.
1. Completed in the file [comparingJSON.js](./comparingJSON.js)
2. Display Flags for all the countries.
1. Created HTML file and added script.js
2. In script.js, added all the codes to get the data from [restcountries API](https://restcountries.com/v3.1/all) and display all countries flags.
3. the code is in the [DISPLAY FLAGS](./DISPLAY%20FLAGS/) folder.
3. Display Name, Region, Sub-region, Population of all the countries.
1. Created HTML file and added script.js
2. In script.js, added all the codes to get the data from [restcountries API](https://restcountries.com/v3.1/all) and display all countries names, regions, sub-regions and populations.
3. The code is in the [DISPLAY DETAILS](./DISPLAY%20DETAILS/) folder.