# Homework 4 - HOF and Functional Programming - _[Live demo](http://hwdemo.prototyping.id/hw4)_ ## General Description In this assignment, you will practice with Higher-Order Functions (e.g., map, filter, and reduce...) and with an external library ([Chart.js](https://www.chartjs.org)). The application lets a user visualize a dataset with the papers published at the UIST conference between the year 2010 and 2021, similarly to [this website](https://geo-conf.github.io/uist). Furthermore, you will be using [Vite](https://vitejs.dev) for development, and, as usual, you will have to make commits and branches in `git`.

## Getting started with Vite and the code stubs The files `index.html` and `main.js` contain a minimal stub to get you started. To start developing, open the terminal and type once ```bash npm install ``` to install all the dependencies. Then type ```bash npm run dev ``` to start the local server on port `3000`. ## Requirments - You cannot use loops (_while_, _for_, _forEach_) throughout the assignment. Use instead `map`, `filter`, `reduce`, etc... - You have to implement your simple UI interface using either **HTML** code (`