BASIC JS
Objects
Definitions
Career
SuperBowl
100

Name 4 variable types

what are objects, arrays, numbers, strings, booleans, null, undefined

100

name 3 object methods.

.assign, .create, .keys, .getproperty, .entries, ....

100

nesting

Nesting is when you write something inside of something else.

I.E.You can have a function inside of another function

100

what was your favorite part of this week.

free

100

This QuarterBack has won the most superbowls

Tom Brady

200

What is wrong with this code?

function addTwo(num){

return addTwo(num + 2);

}

we should just return num + 2

200
true or false: A method is basically just a function for objects

true

200

parameter

The parameters are the function's arguments. JavaScript arguments are passed by value: The function only gets to know the values, not the argument's locations. If a function changes an argument's value, it does not change the parameter's original value.

200

What is impostor syndrome

Imposter syndrome is loosely defined as doubting your abilities and feeling like a fraud.

200

These are the two quarterbacks starting in this years superbowl.

Matthew Stafford and Joe Burrow

300

What does the call stack do?

Keeps track of what functions are being run and when they execute.

300

what are object properties


Object properties basically describe objects. Object properties can be any of the three primitive data types, or any of the abstract data types, such as another object. I.E var dog = {

name: bruno

age: 3

Likes Bones" Yes

}

300

array.length

The JavaScript array length property states the number of items in an array.

300

Why is linkedin important.

free response

300

This team was a dynasty in the early 1990's winning 3 super bowls.

Dallas Cowboys

400

what is this symbol and what is an example of how we can use it.   %

module, one use case is we can use it to filter between odd and even numbers

400

Explain what a key value pair is.

A property is a “key: value” pair, where key is a string (also called a “property name”), and value can be anything.

400

For Loop

Used to iterate over an array

400

Name 3 actions to take when you start the job hunting process.

update resume, update linkedin, up connections on linkedin, reach out to recruiters... many others

400

This team famous for choking, lost 4 superbowls in a row.

Buffalo Bills

500

what is the difference between == and ===

The difference between both the operators is that,“==” is used to compare values whereas, “ === “ is used to compare both value and types.

500

what does the object.keys method do?

returns an array of a given object's own enumerable property names, iterated in the same order that a normal loop would.

500

Syntax

 the set of rules that define a correctly structured JavaScript program.

500

Name 3 websites you can use to help you in your career

leetcode, linkedin, portfolio websites, glassdoor, many others

500

Joe Burrow has a chance to win the superbowl and become the third quarterback to win and superbowl and college national championship. Name one of the other two quarterbacks who have done this. HINT: they all share the same first name

Joe Montana, Joe Namath