Variables
Functions
If Statements
Misc (double points)
Misc Pt II
100

Name two data-types

What are.. boolean, number, string, bigint, undefined, null, object

100

What is one reason why we use functions?

What is cleaner code, less mistakes, saves time.

100

What is this logic gate?

==

What is Equal Value

100

What is JavaScript?

What is the actions of a website

200

What is a Variable?

What is a value that can be changed or modified

200

What is the function to generate a random integer?

What is Math.random

200

What is this called?

if(this) { 

}

What is a condition

200

How do you log something in the console?

What is console.log()

300

What is this variables data type? 

(Array).(9)

What is an object

300

What is function?

What is a statement that will run whenever it is called and can return a value when asked

300

What is this logic gate?

||

What is Or

300

How do you get an ID?

let Variable = document.getElementById("ID")

300

How do you leave a comment?

Everyone will have 30 seconds to submit an answer if they would like.

What is \\

400

What type of variable is this? (True)

What is none of the above!

400

What is a return?

What is a line of code that will return a value when a function is called.

400

Name 7 different logic gates

What is - Answers May Vary

400

How do you access a class?

let variable=document.querySelectorAll(".class");

500

Define the variable chicken as a number (write code)

Everyone will have 30 seconds to submit an answer if they would like.

What is let chicken = 0

500

Write a function in its most basic form.

Everyone will have 30 seconds to submit an answer if they would like.

What is function MyFunctionName (parameter)

500

Write an if else statement.

Everyone will have 30 seconds to submit an answer if they would like.

if(condition) {

}else{

}

500

DAILY DOUBLE

Write a ternary operator. 

Everyone will have 30 seconds to submit an answer if they would like.

VariableName = (condition) ? value1:value2

M
e
n
u