I've learned a lot about HTML and CSS so far in CS1. Here's a list of my great discoveries!
cd ./desktop/silo15.github.io
git add .
git commit -m "adding things"
git push
Still working on this...
Functions are cool for being able to do tasks over and over again. You can use setInterval to run a function after a specific amount of time (function, number of milliseconds) You can use functions and setInterval to repeatedly create elements, storing them in a variable with document.createElement(), using the hereditary system of html to implement it in the body document.body.appendChild. You can add a class to them with broccoli.classList.add and once you style the class with CSS, it's like a machine pumping out the product of divs of your own customization.
console.Log() allows you to see what your code is doing.
addEventListener()
alert() gives a pop-up on the page to show the user.
setInterval() runs a function in a set amount of time.
Math.random() function generates a random number between 0 and 1 and you can set that in a variable to make random occurances happen.
Today I learned how to use audio, and also if/else if statements. You can use a variable to check if its true and run a function, and then set the variable to false in the function to run the other iteration.
I learned how to make multiple divs in a function. let square = document.createElement("div") document.body.appendChild("square")