The name of this function:
function addToJeopardyScore() { }
addToJeopardyScore
This CSS property controls the text color
The tag name for paragraph tags
The keyword to declare a variable
The parameters used to call this function:
add(5, 7);
#container, .item and h1 are all examples of this
Write the code to display image element with a source set to pup.png
""
How to access the 2nd element of an array variable named arr
arr[1]
Write the code to call the function below with 12, 22 as parameters.
function add(x, y);
Write the css to hide all elements with class="hidden"
.hidden { display: none; }
The difference between img and input tags versus p and div tags
img and input are self-closing
What it's called when you add two strings together to combine them
Write the code to change all elements of class "red" to have background color of red
add(add(12, 4), 5);
These three properties affect the space around an element
padding, border, margin
Write the html to create an input with an id of "class" and a class of "id"
<input id="class" class="id">
The result of the following code:
https://popcode.org/?snapshot=1828cd53-574a-4352-b24e-33941eba3811
"a b c "
Write the code to call sayHi() every 10 seconds
setInterval(function() { sayHi(); }, 1000);
You use this property+value when a border makes your element a little bit too wide
box-sizing: border-box;
Write the html to display the text "div" nested inside a div, which is also nested in a div.
<div><div>div</div></div>
((1 + 2) % (5 % 3) * 1) / 0