https://github.com/fabianraja/javascript_day7
Array Methods
https://github.com/fabianraja/javascript_day7
array-methods javascript
Last synced: 7 months ago
JSON representation
Array Methods
- Host: GitHub
- URL: https://github.com/fabianraja/javascript_day7
- Owner: FabianRaja
- Created: 2023-11-01T07:19:15.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-17T08:46:25.000Z (about 2 years ago)
- Last Synced: 2023-12-17T09:30:13.434Z (about 2 years ago)
- Topics: array-methods, javascript
- Language: JavaScript
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
1. Solving problems using array functions on rest countries data (https://restcountries.com/v3.1/all).
a. Getting all the countries from Asia continent /region using Filter function
b. Getting all the countries with a population of less than 2 lakhs using Filter function
c. Printing the following details name, capital, flag, using forEach function
d. Printing the total population of countries using reduce function
e. Printing the country that uses US dollars as currency.