Typo on Optional Chaining (?.) Assignment
Author: kimhnhCreated Jan 29, 2024Updated Feb 24, 2025
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.
Source: jonasschmedtmann/complete-javascript-course