- Create a basic form with 2 buttons.
- Style it with basic CSS.
- Write a JS code which pushes a new book to a table which represents a database which is stored in a variable 'books'.
- Add filtering for each column.
- Complete all logic tasks for filtering:
- for string fields: only those rows of the table which values coincides with the symbols printed in the filtering input fields.
- for cost of the book: filtering should be in range from 1 to 1000; all books with corresponding cost should be filtered.
- for edition years: there's a need to create a dropdown list with years from 2010 to 2030; all books with corresponding edition year should be filtered.
- Add a possibility to reset filtering so that the table reloads to the standard look.
- Add a possibility to manually turn off particular filtering so that other which are still working should remain.