JavaScript Flashcards
what is the purpose of a variable?
variables store a value of something
how do you declare a variable?
use the keyword var then the name of the variable
How do you initialize (assign a value to) a variable?
You’d use the assignment operator
What characters are allowed in variable names?
underscore dollar sign and letters
What does it mean to say that variable names are “case sensitive”?
If its not case sensitive then they are different values
What is the purpose of a string?
A series of characters in a row. Data that is not code.
What is the purpose of a number?
Calculations
What is the purpose of a boolean?
To represent logic values
what does the = operator mean in JS
the assignment operator
How do you update the value of a variable
set the value to the right of the assignment operator
What is the difference between null and undefined?
Null is a placeholder and undefined is javascript way of saying empty
They both mean empty, lack of value datatypes. Undefined is under the control of javascript. Null has to be assigned by an assignment operator. Somewhere down the line of history a human being came down and assigned null.
Why is it a good habit to include “labels” when you log values to the browser console?
It’ll give us a point of reference.
Give five examples of JavaScript primitives.
Strings, boolean, undefined, numbers, and null.
What data type is returned by an arithmetic operation?
a number
What is string concatenation?
adds numbers and concatenates strings together
What purpose(s) does the + plus operator serve in JavaScript?
its the addition operator
What data type is returned by comparing two values (, ===, etc)?
a boolean
What does the+=”plus-equals” operator do?
The addition assignment operator (+=) adds the value of the right operand to a variable and assigns the result to the variable.
What are objects used for?
to create a model of something you would recognize in the real world. All stored together in one area
What are object properties
They tell us about the object, variables that live inside an object.
Describe object literal
the object name curly braces and key value pairs
How do you remove a property from an object?
delete operator
What are two ways to get or update the value of a property?
dot and bracket notation
What are arrays used for?
It stores a list of values/groups of similar data.
describe array literal notation
variable then bracket index values end with comma brackets
how are arrays different from “plain” objects
Arrays are listed in an order, individually named, set length will repair themselves if an index is deleteds
What number represents the first index of an array
0
What is the length property of an array?
array.length gives the total amount of index in an array
How do you calculate the last index of an array
array.length - 1
What is a function?
A repeatable chunk of code with a specific purpose
Describe parts of a function definition
function keyword and name then parameters then curly braces then code inside
Describe parts of the function call
function name parentheses argument semi colon
When comparing them side by side, what are the differences between a function call and function definition?
Definition has a code block and function keyword
What is the difference between a parameter and an argument?
Parameters are placeholders for arguments that doesn’t have a value that is known. Used when defining thefunction while arugments are used when calling
Why are function parameters useful?
They are placeholders for the arguments. If there were no parameters the behavior would always be the same. It gives us the ability to allow our behavior to act based on a certain set of values
What two effects does a return statement have on the behavior of a function?
It causes the function to produce a value we can use in our program and prevents anymore code from running.
Why do we log things to the console?
to test debugging and inspect if our code works
What is a method?
a function which is a property of an object
How is a method different from other functions
they are properties of objects
How do you remove the last element from an array?
pop method
How do you round a number down to the nearest integer?
Math.floor()
How do you generate a random number?
Math.Random()
How do you delete an element from an array?
pop()
how do you append an element to an array?
push method
how do you break a string into an array?
split method
Do string methods change the original string?
They do not and console.log the original string and go to MDN
roughly how many string methods are there according to the MDN docs?
a lot
Is the return value of a function or method useful in every situation?
sometimes but not all the time
How many array methods are there?
A lot
What 3 letter acronym should you always include in your google search about a javascript method or CSS property?
MDN
give 6 examples of comparison operators?
< > <= >= !== ===
What data type do comparison expressions evaluate to?
Booleans
What is the purpose of an if statement?
It evaluates if a condition is true then runs the code block
is else required in order to use an if statement?
no
Describe the syntax of an if statement?
if keyword condition curly braces for code
what are the 3 logical operators?
&& || !
how do you compare two different expressions in the same condition?
logical or/ and operator
What is the purpose of a loop?
to check conditions/do something over and over again til its false
What is the purpose of a condition?
its how many iterations the loop will run depending on if its true or false
What does iteration mean in the context of loops?
A cycle of the for loop/ every time the code block runs
When does the condition expression of a while loop get evaluated?
at the beginning of the loop
When does the initialization of a for loop get evaluated
at the beginning
when does the condition get evaluated?
after the initialization
When does the final expression get evaluted?
After the code block has run
besides a return, which exits its function, which keyword exits a loop before its condition?
The break
What does the ++ increment operator do?
it adds one to the variable
How do you iterate through the keys of an object?
with a for in loop
What is JSON?
Javascript object notation. a format we can represent data in most commonly used to send data across a network. Syntax is that of a javascript object.
What are serialization and deserialization?
Serialization is the process of turning an object in memory into a stream of bytes so you can store it or send it over a network.
Deserialization is the opposite where you turn the stream of bytes into an object in memory. Spread out over a system so ease of access and ease of storage
Why are serialization and deserialization useful?
You can send objects over a network and it can be parsed by the receiver
How do you serialize a data structure into a JSON string using javascript?
JSON.stringify();
How do you deserialize a JSON string into a data structure using JavaScript?
JSON.parse()
how do you store data in localStorage?
setItem();
How do you retrieve data from localStorage?
getItem();
What data type can localstorage save in the browser?
string data
When does the ‘beforeunload’ event fire on the window object?
When the document and its resources are about to be unloaded.
What is a method?
A function which is stored in a property of an object
How can you tell the difference between a method definition and method call
definition has function keyword curly braces and code to run inside the code block.
Describe method definition syntax
method name with an anonymous function and the opening curly brace for the method code block and code to be run.
describe method call syntax
Method call has the method of the object being called with parentheses
How is a method difference from any other function?
Its used on objects, that object may include other methods and general data. Methods can use all the other tools inside the object.
What is the defining characteristic of OOP
objects can contain both data (as properties) and behavior (as methods)
What are the four principles of OOP
abstraction, encapsulation, polymorphism, inheritance
what is abstraction?
Being able to work with possibly complex things in simple ways.
What does API stand for?
Applied programming interface
What is the purpose of API?
to give programmers a way to interact with a system in simplified, consistent fashion: aka abstraction
What is this in JavaScript?
An implicit parameter
what does it mean to say that this is an implicit parameter?
Its available in the function code block even tho it was never included in the functions parameters.
When is the value of this determined in a function; call or definition time?
call time
What doesthisrefer to in the following code snippet?var character = { firstName: 'Mario', greet: function () { var message = 'It\'s-a-me, ' + this.firstName + '!'; console.log(message); } }
nothing its a trick question
Given the abovecharacterobject, what is the result of the following code snippet? Why?character.greet();
a function returning its a me Mario
Given the abovecharacterobject, what is the result of the following code snippet? Why?
its a/me undefined. becaues there is no firstName in the function call.
How can you tell what the value ofthiswill be for a particular function or methoddefinition?
you can’t cause its not defined
How can you tell what the value ofthisis for a particular function or methodcall?
if its to the left of the dot and if there is no object then its the window global object.
What kind of inheritance does the javascript programming language use?
prototypal inheritance
What is a prototype in JavaScript?
A JavaScript prototype is simply an object that contains properties and (predominantly) methods that can be used by other objects.
How is it possible to call methods on strings, arrays, and numbers even though those methods don’t actually exist on objects, arrays, and numbers?
Its placed in a prototype object and then the ojbects will delegate to take that object when they aren’t able to perform the required task themselves.
if an object does not have it’s own property or method by a given key, where does javascript look for it?
within the proto object.
waht does the new operator do?
lets developers create an instance of a user-defined object type or of one of the built-in object types that has a constructor function.
What property of JavaScript functions can store shared behavior for instances created with new?
prototype property
What does the instanceof operator do?
tests to see if the prototype property of a constructor appears anywhere in the prototype chain of an object
What is a “callback” function?
a function passed into another function as an argument, which is then invoked inside the outer function to complete some kind of routine or action.
Besides adding an event listener callback function to an element or the document, what is one way to delay the execution of a javascript function until some point in the future?
setTimeout()
How can you set up a function to be called repeatedly without using a loop?
setInterval()
What is the default time if you omit the delay parameter from setTimeout() or setInterval()?
0
What do setTimeout() and setInterval() return?
A positive integer value which identifies the timer created by the call.
What is a client?
a piece of computer hardware or software that accesses a service made by a server. reqeusts something.
what is a server?
a piece of computer hardware or software that provides functionality for other programs or devices called clients.
Which http method does a browser issue to a web server when you visit a URL?
GET
what three things are on the start-line of an HTTP request message?
An HTTP method, the request target, and the http version.
What three things are on the start-line of an HTTP response message?
protocol version status code and status text.
What are HTTP headers?
a case sensitive string followed by a colon and a value who’s structure depends upon the head. additional information
Where would you go if you wanted to learn more about a specific HTTP header
MDN?
Is a body required for a valid HTTP request or response message?
no
What is a code block? what are some examples of a code block?
its where the code runs if the condition is true. If else, for, do while, while try catch
What does block scope mean?
Anything within the curly braces
What is the scope of a variable declared with const or let?
block scope
What is the difference between let and const?
let variables can have value reassigned but the variable itself cannot be redclared to another name?