**1 Pretend I'm not technical - Can you teach me what a function is and why we use them?**
Objectives:
Explain a technical concept
**2 What is the difference between an object and an array in JavaScript?**
Objectives:
Demonstrate an understanding of object literals
Demonstrate an understanding of arrays
**3 What is the difference between == and === in Javascript**
Objectives:
Demonstrate an understanding of when to use the 'pull' command
Demonstrate an understanding of when to use common git commands
**4 Can you explain the difference between a local git repo and a remote git repo?**
Objectives:
Demonstrate an understanding of when to use the 'add' command
Demonstrate an understanding of when to use common git commands
**5 Basic JS Expression**
Objectives:
Demonstrate an understanding of different types of equality
Demonstrate an understanding of different built-in data types
**6 HTML Layout**
Objectives:
Understand how elements contain other elements
Understand what an unordered list is
Use html links
**7 Functional Scope JS**
Objectives:
Interpret the use of function scope
Interpret the use of global scope
Interpret the use of calling a function
Interpret the use of using function arguemnts
**8 JavaScript Conditional**
Objectives:
Undersand how to define methods
Understand how to return a value from a method
Understand how to pass arguments
Apply conditional expressions and operators
**9 JS Loops**
Objectives:
Apply the each method to iterate over an array
Understand the concept of iteration
Demonstrate using a block as an argument
**10 // In JavaScript
// write a function that takes two numbers as arguments
// and returns the product (multiply) of the two numbers**
Objectives:
Create a function with parameters
Recognize calling a function with arguments
Use a return statement
**11 // Using the object literal below, print "Pizza" to a console.log
var menu = {
a: "Pizza",
b: "Tacos",
c: "Salad"
};
// Put your code below this line**
Objectives:
Interpret the creation of an object literal
Demonstrate an understanding of manipulation of an object literal
You scored a 0.5 out of 1.5
**12 // In JavaScript, write a function that
// takes an array as an argument
// and prints out the numbers in the array that are greater than 5
// for example foo([3,6,1,7]) would print out 6 and 7**
Objectives:
Create a function with parameters
Build for loops to efficiently iterate over code
Use conditionals to control the flow of your code with if statements
Create and manipulate an array
You scored a 0 out of 1