Starting with this page add the following functionality:
Searching a list of book titles by typing keywords in the input field.
Result items for the search should update instantly as characters are being typed.
books
.onkeyup
event handler.string1.indexOf(string2)
to check for presence of string2 within string1 (returns -1 if not present)