Computing Science WDD (JavaScript) Flashcards
What tag indicates that between these tags there is JavaScript Code?
Script Tags
What is an example of a function?
mouseOver()
mouseOut()
What is missing?
document.getElementById(“”).style.color = “blue”;
The Id |
\/
document.getElementById(“”).style.color = “blue”;
What is a string?
A string is any series of characters.
What is an array?
Is a variable that can hold more than one value at a time.
What happens when mouseOut() function is triggered?
When ever you move your mouse away from the image, text or element it will do a certain function.
What property is used to control colour?
.style.color
What is the tag for a variable?
var
What is Boolean?
A 1 or 0 question, True or False.
What does is this condition?
==
Equal To.