diff --git a/01_05/script.js b/01_05/script.js index 84fbede2..3dd746f1 100755 --- a/01_05/script.js +++ b/01_05/script.js @@ -7,6 +7,12 @@ /* Multi-line comment See! this line is also commented out! */ +/** + * function updateBackpack() + * Outputs HTML + * @param {string} update + */ + const updateBackpack = (update) => { let main = document.querySelector("main"); // main is an element main.innerHTML = markup(backpack); diff --git a/02_02/index.html b/02_02/index.html index 39f25a28..216b38ca 100755 --- a/02_02/index.html +++ b/02_02/index.html @@ -4,7 +4,7 @@