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