Project Videos
These are 2 other students' project videos.
Emma’s Group
- Used a lot of keys/values
- Used algorithms
- My group could learn a lot from the video using keys/values and algorithms while listing the merchendise items
Team Berries
- Made a table using API
- My group did something similar with jokes about merchendise
BMI |
---|
addBMIButton.addEventListener(“click”, function() { const bmi = BMIValue.value; const newRow = document.createElement(“tr”); const newBMI = document.createElement(“td”); newBMI.innerText = bmi; newRow.appendChild(newBMI); BMIList.appendChild(newRow); }); </script>