Skip to content

Commit

Permalink
Added a missing close list item tag
Browse files Browse the repository at this point in the history
  • Loading branch information
tyeh26 authored Aug 7, 2024
1 parent 43dd68c commit 59e41c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion javascript/first-js-oop-project.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ This mini project will help you to learn basic concepts about objects in JavaScr
// Handler when the DOM is fully loaded
let html = '';
eventArray.forEach((item) => {
html += `<li>${item.name} - ${item.description}`;
html += `<li>${item.name} - ${item.description}</li>`;
});
document.querySelector('#event').innerHTML = html;
});
Expand Down

0 comments on commit 59e41c2

Please sign in to comment.