JavaScript Part 1
JavaScript Part 2
Html
CSS
Back To Basics
100

To check that your code is producing the desired output we would upload the variable to the...

What is: console.log()?

100

This language is a loosely-typed, interpreted, scripting language.

What is: JavaScript?

100

What does HTML stand for?

What is: Hyper Text Markup Language?

100

These CSS properties define the space between the element border and the element content.

What is: padding?

100

How do you write a comment in JavaScript?

What is: //This is a single-line comment /*This is a multi- line comment*/

200

This allows two, or more conditions to be considered with user input.

What is: a compound conditional?

200

In JavaScript, this is the keyword you use to declare a function.

What is: function?

200

When creating a list in HTML which of the tags comes first? <li> or <ul>?

What is: <ul>?

200

These properties define the space around elements.

What is: margin?

200

What is the datatype of NaN?

What is: number?

300

What property allows us to change the color of an input field already created in HTML?

What is: .style?

300

JavaScript requires you to use this keyword to declare a variable that will be changed in the future.

What is: let?

300

This tag defines a division or a section in an HTML document.

What is: a 'div' tag?

300

This is the CSS selector that is used to identify a class.

What is: a dot?

300

A variable that is declared without a value defined will have the value of?

What is: undefined?

400

for(let i = 0; i < arr.length; i++){ for(let j = 0; j < arr.length; j++){ // some code } }

The above is an example of what type of loop?

What is: a nested loop?

400

This is the language that your paging styling should use.

What is: CSS?

400

What is the correct HTML tag to insert a line break?

What is: <br> or <br/>

400

This is the CSS selector that identifies an id.

What is: a hash (#)?

400

.some(), .map(), .filter()
These are examples of what?

What are: array methods?

500

How do you access an element in the HTML document using its ID in JavaScript?

What is: document.getElementById('id')?

500

What are the 3 parts of a For Loop?

for ([initialization]; [end condition]; [increment / step]) {}

What is: initialization, end condition, increment/ step?

500

This tag defines a hyperlink, which is used to link from one page to another.

What is: an 'a' tag?

500

This is the meaning of the CSS acronym.

What is: Cascading Style Sheet?

500

What would the console output if I ran this:
console.log("javascript".join(""))?

What is: TypeError: "javascript".join is not a function?

Why? Because join is an array method

M
e
n
u