https://github.com/aadewunmi/parksandstreetsreport
Udemy JavaScript Coding Challenge - Parks-And-Streets-Report App (ES6)
https://github.com/aadewunmi/parksandstreetsreport
Last synced: about 1 month ago
JSON representation
Udemy JavaScript Coding Challenge - Parks-And-Streets-Report App (ES6)
- Host: GitHub
- URL: https://github.com/aadewunmi/parksandstreetsreport
- Owner: AAdewunmi
- Created: 2020-04-02T15:45:35.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-05-25T11:20:28.000Z (almost 5 years ago)
- Last Synced: 2025-01-25T06:11:34.731Z (3 months ago)
- Language: JavaScript
- Homepage:
- Size: 117 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Udemy Coding Challenge - Parks-And-Streets-Report App (ES6)
Suppose that you're working in a small town administration, and you're in charge of two town elements:
1. Parks
2. StreetsIt's a very small town, so right now there are only 3 parks and 4 streets. All parks and streets have a name and a build year.
At an end-of-year meeting, your boss wants a final report with the following:
1. Tree density of each park in the town (formula: number of trees/park area)
2. Average age of each town's park (formula: sum of all ages/number of parks)
3. The name of the park that has more than 1000 trees
4. Total and average length of the town's streets
5. Size classification of all streets: tiny/small/normal/big/huge. If the size is unknown, the default is normalAll the report data should be printed to the console.
## Technologies
* JavaScript - ES6## Screenshot
Starter Code Forked From Jonas Schmedtmann (https://github.com/jonasschmedtmann/complete-javascript-course/tree/master/7-ES6)