This operator is used to assign a value to a variable.
What is =?
This many conditions must be true at once for the game to end.
What is 4
He started Facebook in a college dorm room.
Who is Mark Zuckerberg?
This data type is used for text in JavaScript and is written inside quotes.
What is string?
This variable controls how much the dinosaur moves up or down each frame.
What is dinoVY?
This keyCode triggers the jump when it is pressed.
What is 32?
This is what you do to fix a bug.
What is debug?
This symbol is used to end most lines of JavaScript code.
What is ;?
This operator checks if two values and types are exactly the same.
What is ==?
This condition must be false for the dinosaur to jump.
What is !isJumping?
This woman is known for creating the first computer program and wrote about algorithms in the 1800s.
Who is Ada Lovelace?
This word defines a reusable block of code in JavaScript.
What is function?
This operator means "or" in a condition.
What is ||?
This variable makes the dinosaur fall back down after a jump.
What is gravity?
This is the language used to make web pages interactive, often alongside HTML.
What is Javascript?
This loop runs code only if a condition is true.
What is if statement?
This is what a single line comment starts with.
What is //?
This function listens for key presses and allows the dinosaur to jump.
What is keyPressed?
This is the global network that connects millions of computers and websites around the world.
This is a built-in feature in Khan Academy Javascript that is run infinitely.
What is draw loop?