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".
- Host: GitHub
- URL: https://github.com/thangapandi-k/daily-task-day-03
- Owner: Thangapandi-K
- Created: 2024-04-17T18:35:31.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-17T21:46:09.000Z (about 2 years ago)
- Last Synced: 2025-06-13T12:05:54.664Z (about 1 year ago)
- Topics: function, javascript, json
- Language: JavaScript
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.