journal page

(date) - Entry #()

empty for design yay
y

10/1/24 - Entry #1

Today we learned how to push your website so it updates on github. It looks very complicated but i feel like i can get the hang of it.

11/12/24 - Entry #2

I havent written one of these in a while. but im still working on my jumpscare project
cd ./desktop/KiaraVisela.github.io
git add .
git commit -m "adding things"
git push

11/19/24 - Entry #3

honestly i dont know what i can do with this new skill but i hope to

FUNCTIONS

Computer Science 1 Cheat Sheet

setInterval()
setInterval(count, 3000)
Every 3000ms, run the function count.

add()
add(5)
Adds to a variable or div.

console.log(text)
Puts in the console whatever is typed in the parameter.
Example: Console.log(“Hello World”)

createEvent(event type)
Creates a new event that can do what the user sets the parameters to (event type)
makes a new object that is the type in the parameters
getElementById():
Example: let mystar = document.getElementById(“star”)

hello world


This gets the element with id “star” and stores it in the mystar variable. In this case you would get the p element shown.
function yourfunctionhere(x){
let whatever = document.getElementById(“div”+x)
whatever.style.animationName = “youranimationname”

addEventListener()
The project gets checked for something to happen
Example: survey.addEventListener(click,
function(){
}
Survey = the area in which you want this to do
Click = the thing you want to trigger the function/the thing you want it to listen for
Function = the thing you want the project to do once the action has triggered it

alert("TEXT” )
A bubble would pop up with the text on screen and the user would have to click ok to get rid of it
Example alet(“ERROR”)
A bubble with error would show up

setTimeOut()
sound.play()
Plays the sound file that is assigned to the variable sound.

document.createElement("div")
Creates an element with the name/tag of div.

appendChild(Sidney)
Applies a property to all divs nested inside the div Sidney.

consoleLog(xxxxxx)
Writes something in the console section of the doc

12/17/24 - Entry #4

i cant wait bor break and i am really proud of my project

2/28/25 - Entry #5

i am excited to finally apply the forloop to my projects page and now i can redo my projects page to make it mroe organized and efficient

(date)- Entry #6