Javascript Flashcards
What is the purpose of variables?
to store data
How do you declare a variable?
var
How do you initialize (assign a value to) a variable?
=
What characters are allowed in variable names?
letters, numbers, underscores, or dollar signs
What does it mean to say that variable names are “case sensitive”?
they are specific to how they are typed
What is the purpose of a string?
store and manipulate text
What is the purpose of a number?
to show value that would be number quantity
What is the purpose of a boolean?
to determine if something is true or false
What does the = operator mean in JavaScript?
putting in a value to something
How do you update the value of a variable?
just change the value
What is the difference between null and undefined?
null is an empty value, undefined means the variable has been declared but not defined
Why is it a good habit to include “labels” when you log values to the browser console?
point of reference
Give five examples of JavaScript primitives.
string numbers null undefined values
What data type is returned by an arithmetic operation?
number
What is string concatenation?
combination of 2 or more string values
What purpose(s) does the + plus operator serve in JavaScript?
to add values or concatenate strings
What data type is returned by comparing two values (, ===, etc)?
boolean
What does the += “plus-equals” operator do?
adds the value of the right operand to a variable and assigns the result to the variable
What are objects used for?
to group variables or functions
What are object properties?
variables inside objects
Describe object literal notation.
{properties: value}
How do you remove a property from an object?
delete
What are the two ways to get or update the value of a property?
dot notation bracket notation
What are arrays used for?
to be put in a list
Describe array literal notation.
[values, values ];
How are arrays different from “plain” objects?
arrays are numeric will repair themselves if something is deleted
What number represents the first index of an array?
0
How do you calculate the last index of an array?
subtract by 1
What is a function in JavaScript?
series of statements that is repeatable
Describe the parts of a function definition.
function keyword name of function parameter list return statement function
Describe the parts of a function call.
name of the function and arguments if it requires it
What is the difference between a parameter and an argument?
parameter is the name for data that will be used later
arguments is data the
What two effects does a return statement have on the behavior of a function?
allows to return result
Why do we log things to the console?
to debug
What is a method?
function being stored in a property
How is a method different from any other function?
methods have to say where they’re coming from
How do you remove the last element from an array?
pop
How do you round a number down to the nearest integer?
floor
How do you generate a random number?
random
How do you delete an element from an array?
splice
How do you append an element to an array?
push
How do you break a string up into an array?
split
Do string methods change the original string? How would you check if you weren’t sure?
No check the return value on mdn
Roughly how many string methods are there according to the MDN Web docs?
alot
Is the return value of a function or method useful in every situation?
no
Roughly how many array methods are there according to the MDN Web docs?
30
What three-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?
true or false
What is the purpose of an if statement?
making decisions
Is else required in order to use an if statement?
no
Describe the syntax (structure) of an if statement.
if condition(parameter){}
What are the three logical operators?
logical (and or not)
How do you compare two different expressions in the same condition?
using logical and, or
comparison
to repeat over and over again
What data type do comparison expressions evaluate to?
to continue or stop
What is the purpose of a loop?
everytime the code block runs
What is the purpose of a condition expression in a loop?
at the beginning of the loop
What does “iteration” mean in the context of loops?
in the beginning
When does the condition expression of a while loop get evaluated?
before the code block
Besides a return statement, which exits its entire function block, which keyword exits a loop before its condition expression evaluates to false?
break
What does the ++ increment operator do?
increments variable by 1
How do you iterate through the keys of an object?
for in
Why do we log things to the console?
to debug
What is a “model”?
representation of the original
Which “document” is being referred to in the phrase Document Object Model?
html
What is the word “object” referring to in the phrase Document Object Model?
referring to javascript objects
Give two examples of document methods that retrieve a single element from the DOM.
getElementByID queryselector()
Give one example of a document method that retrieves multiple elements from the DOM at once.
queryseleectorall
Why might you want to assign the return value of a DOM query to a variable?
to use it later
What is the difference between these two snippets of code?
element. addEventListener(‘click’, handleClick)
element. addEventListener(‘click’, handleClick( ))
2nd line of code gives an undefined result and has a callback function that we dont call the browser does
What does document.querySelector() take as its argument and what does it return?
Returns the first Element within the document that matches the specified selector, or group of selectors
What does document.querySelectorAll() take as its argument and what does it return?
takes in node list and return everything
Why do we log things to the console?
to debug
What is the purpose of events and event handling?
to verify user inputs
Are all possible parameters required to use a JavaScript method or function?
no
What method of element objects lets you set up a function to be called when a specific type of event occurs?
addEventListner method
What is a callback function?
a function being passed as a value
What object is passed into an event listener callback when the event fires?
target
What is the event.target? If you weren’t sure, how would you check? Where could you get more information about it?
a reference to the object where the event occurred
What is the difference between these two snippets of code?
element. addEventListener(‘click’, handleClick)
element. addEventListener(‘click’, handleClick( ))
theres no callback function of the 2nd line of code
What is the className property of element objects?
get value of class /??????????
How do you update the CSS class attribute of an element using JavaScript?
????????
What is the textContent property of element objects?
represent the text inside the element
How do you update the text within an element using JavaScript?
get element from dom
Is the event parameter of an event listener callback always useful?
no but prepare for it
Would this assignment be simpler or more complicated if we didn’t use a variable to keep track of the number of clicks?
more complicated
Why is storing information about a program in variables better than only storing it in the DOM?
???????
What event is fired when a user places their cursor in a form control?
focus
What event is fired when a user’s cursor leaves a form control?
blur
What event is fired as a user changes the value of a form control?
input
What event is fired when a user clicks the “submit” button within a ?
submit
What does the event.preventDefault() method do?
prevents default action
What does submitting a form without event.preventDefault() do?
????????
What property of a form element object contains all of the form’s controls.
elements
What property of form a control object gets and sets its value?
value property
What is one risk of writing a lot of code without checking to see if it works so far?
it can be broken and will be difficult to find those mistakes
What is an advantage of having your console open when writing a JavaScript program?
you can see where the code went wrong
Does the document.createElement() method insert a new element into the page?
its doesnt
How do you add an element as a child to another element?
append child
What do you pass as the arguments to the element.setAttribute() method?
name of attribute new value for attribute
What steps do you need to take in order to insert a new element into the page?
????????
What is the textContent property of an element object for?
contains the text with that element
Name two ways to set the class attribute of a DOM element.
class name, set attribute ,class list
What are two advantages of defining a function to do create something (like the work of creating a DOM tree)?
??????
What is the event.target?
stores event where it originated from
Why is it possible to listen for events on one element that actually happen its descendent elements?
event bubbling
What DOM element property tells you what type of element it is?
tagname
What does the element.closest() method take as its argument and what does it return?
selector returns up the dom tree which is closest to its ancestor
How can you remove an element from the DOM?
remove ()
If you wanted to insert new clickable DOM elements into the page using JavaScript, how could you avoid adding an event listener to every new element individually?
add event listener to that parent
What is the event.target?
a reference to the object onto which the event was dispatched
What is the affect of setting an element to display: none?
affected element will disappear.
What does the element.matches() method take as an argument and what does it return?
selectorString and returns a boolean (if element matchrs css selector)
How can you retrieve the value of an element’s attribute?
getAttribute
At what steps of the solution would it be helpful to log things to the console?
all the time? query dom
If you were to add another tab and view to your HTML, but you didn’t use event delegation, how would your JavaScript code be written instead?
????????
If you didn’t use a loop to conditionally show or hide the views in the page, how would your JavaScript code be written instead?
??????
What is a method?
a function stored in a property
How can you tell the difference between a method definition and a method call?
definition “property:function()”
call “property.method()”
Describe method definition syntax (structure).
definition “property:function()”
Describe method call syntax (structure).
call “property.method()”
How is a method different from any other function?
method are functions attached to objects
What is the defining characteristic of Object-Oriented Programming?
keep them together
What are the four “principles” of Object-Oriented Programming?
Encapsulation, Abstraction, Inheritance, and Polymorphism.
What is “abstraction”?
taking something complex and simplifying it
What does API stand for?
Application programming interface
What is the purpose of an API?
delivers a user response to a system and sends the system’s response back to a user.
What is this in JavaScript?
where the object code is run
What does it mean to say that this is an “implicit parameter”?
???????
When is the value of this determined in a function; call time or definition time?
?????
How can you tell what the value of this will be for a particular function or method definition?
you cant
How can you tell what the value of this is for a particular function or method call?
left of the dot
What kind of inheritance does the JavaScript programming language use?
prototype based inheritance
What is a prototype in JavaScript?
???????????
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?
prototypal inheritance
If an object does not have it’s own property or method by a given key, where does JavaScript look for it?
proto
What does the new operator do?
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?
returns true or false if object on the left matches the right
What is a “callback” function?
a function passed into another function as an argument
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 delay if you omit the delay parameter from setTimeout() or setInterval()?
0 default time
What do setTimeout() and setInterval() return?
intervalID and its an integer
What is AJAX?
Read data from a web server - after a web page has loaded
Update a web page without reloading the page
Send data to a web server - in the background
What does the AJAX acronym stand for?
Asynchronous JavaScript And XML.
Which object is built into the browser for making HTTP requests in JavaScript?
XMLHttpRequest
What event is fired by XMLHttpRequest objects when they are finished loading the data from the server?
load event
Bonus Question: An XMLHttpRequest object has an addEventListener() method just like DOM elements. How is it possible that they both share this functionality?
its still an event and they’re both branch off of a prototype