This Repository is created for Day 7 Task
1)Solving problems using array functions on rest countries data (https://restcountries.com/v3.1/all).
-
a) Get all the countries from Asia continent /region using Filter function.
- Source file is in Folder: Asian Countries Filter
-
b) Get all the countries with a population of less than 2 lakhs using Filter function.
- Source file is in Folder: Population Filter
-
c) Print the following details name, capital, flag, using forEach function.
- Source file is in Folder: Details forEach
-
d) Print the total population of countries using reduce function.
- Source file is in Folder: Total Population Reduce
-
e) Print the country that uses US dollars as currency.
- Source file is in Folder: US Dollar Countries