jonasschmedtmann / complete-javascript-course

Starter files, final projects, and FAQ for my Complete JavaScript course
https://www.udemy.com/the-complete-javascript-course/?couponCode=C3GITHUB10
15.69k stars 16.81k forks source link

Typo on Optional Chaining (?.) Assignment #414

Open kimhnh opened 8 months ago

kimhnh commented 8 months ago

Hi, there is a small typo on the Optional Chaining (?.) assignment from codingheroes.io.

getFirstKeyword(book[0]); should be: getFirstKeyword(books[0]); since the provided array is called books.