Skip to content

Commit

Permalink
Merge pull request Techtonica#2068 from tyeh26/patch-1
Browse files Browse the repository at this point in the history
Added a missing close list item tag
  • Loading branch information
daaimah123 authored Aug 13, 2024
2 parents efc365a + 59e41c2 commit 2f4047a
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 2f4047a

Please sign in to comment.