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

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)

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. Streets

It'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 normal

All the report data should be printed to the console.

## Technologies
* JavaScript - ES6

## Screenshot
![Image description](Screenshot.png)

Starter Code Forked From Jonas Schmedtmann (https://github.com/jonasschmedtmann/complete-javascript-course/tree/master/7-ES6)