Adding exams folder + adding 'book_finder' in it as first folder commit

This commit is contained in:
gauvainboiche
2025-08-04 15:30:42 +02:00
parent c15ff7a816
commit b857756967
5 changed files with 138 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
# FSCJ Building Interactive Websites
In the code editor, we have provided you with the starting code for a Book Finder website. Once the application is complete, you will be able to input a genre, title, or author into the search bar, and get back a list of books that match that criteria. You can see the list of books that your application will search in ```bookList.js```.
Your task is to finish building the application by completing the function definitions for the ```captureSearchValue()```, ```filterBooks()```, ```structureBooksAsHtml()```, and ```searchBtnClickHandler()``` functions. You should only make edits to these four function definitions within ```script.js```. Weve defined helper functions in ```helper.js``` that you will need to use as you build out your program.