Javascript Flashcards
What is the purpose of variables?
storing data
How do you declare a variable?
Var name =
How do you initialize (assign a value to) a variable?
assignment operator
What characters are allowed in variable names?
number, text, $, _ cannot start with a number.
What does it mean to say that variable names are “case sensitive”?
capitalizing letters will affect the variable.
What is the purpose of a string?
To add any kind of text.
What is the purpose of a number?
for tasks relating to counting or calculating
What is the purpose of a boolean?
To store a true or false/ determining which part of a script should run.
What does the = operator mean in JavaScript?
Assignment operator
How do you update the value of a variable?
by writing the variable name and assigning it a new value
What is the difference between null and undefined?
undefined = (a variable that has been declared, but no value has been assigned to it yet) null = a variable with no value - it may have had one at some point, but no longer has a value
Why is it a good habit to include “labels” when you log values to the browser console?
So you or your readers can understand what is displayed.
Give five examples of JavaScript primitives.
string, number, boolean, undefined, null
What are objects used for?
grouping together a set of variables and functions. Used to model things.
What are object properties?
variables that are part of an object.
Describe object literal notation.
A way of creating objects by setting variables inside of curly braces.
How do you remove a property from an object?
use the delete keyword followed by the object name . and property name.
What are the two ways to get or update the value of a property?
dot notation or square brackets
What data type is returned by an arithmetic operation?
number type
What is string concatenation?
Combining two or more strings
What purpose(s) does the + plus operator serve in JavaScript?
Adds one value to another or concatenating strings
What data type is returned by comparing two values (, ===, etc)?
Booleans
What does the += “plus-equals” operator do?
add content to an existing variable.
What are arrays used for?
Storing a list of values
Describe array literal notation.
var blank = [‘…’, ‘…’, ‘…’]
How are arrays different from “plain” objects?
They store a list of values instead of just one.
What number represents the first index of an array?
[0]
What is the length property of an array?
determines length of array (how many properties are in it)
How do you calculate the last index of an array?
subtract 1 from the total number of index values.
What is a function in JavaScript?
Similar to a procedure takes some input and returns output
Describe the parts of a function definition.
Describe the parts of a function call.
writing the name of the function and placing () parentheses next to it
Why do we log things to the console?
To check output
What is Method?
Function which is the property of an object.
How is a method different from any other function?
Both are objects but a method is a object reference to a function.
How do you remove the last element from an array?
The pop() Method
How do you round a number down to the nearest integer?
The Math.floor() Method
How do you generate a random number?
Math.random() Method
How do you delete an element from an array?
The Splice() method to remove an item, shift() Method to remove the first item, or pop()Method to remove last item.
How do you append an element to an array?
push method.
How do you break a string up into an array?
The split() Method
Do string methods change the original string? How would you check if you weren’t sure?
No??? Its performing an action, not modifying the string. console log it and check
Roughly how many string methods are there according to the MDN Web docs?
51
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?
33?
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.
Equal to ==, not equal to !=, === strict equal to, !=== strict not equal to, greater than, less than, less than or equal to, greater then or equal to.
What data type do comparison expressions evaluate to?
boolean (true and false)
What is the purpose of an if statement?
Evaluates a condition and if true executes the code block.
is else required in order to use an if statement?
No
Describe the syntax (structure) of an if statement.
if (condition) and if condition is met run instructions.
What are the three logical operators?
Logical and &&, Logical or ||, logical not !.
How do you compare two different expressions in the same condition?
comparison operator such as equal to or less then or greaten then.
What is the purpose of a loop?
A way to repeat a sequence of instructions until a specific condition is met.
What is the purpose of a condition expression in a loop?
tests each time a loop repeats until the condition is no longer met.
What does “iteration” mean in the context of loops?
The process or stage of repeating steps.
When does the condition expression of a while loop get evaluated?
A while loop evaluates its condition before the first iteration, and in between each subsequent iteration.
When does the initialization expression of a for loop get evaluated?
The condition is tested at the beginning of each iteration of the loop.
When does the condition expression of a for loop get evaluated?
after the initialization expression is evaluated
When does the final expression of a for loop get evaluated?
after both the initialization and condition expression are evaluated.
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?
increases the value of a variable by 1
How do you iterate through the keys of an object?
For in loop.
What event is fired when a user places their cursor in a form control?
Focus? When the user enters a field
What event is fired when a user’s cursor leaves a form control?
blur? When the user leaves a field
What event is fired as a user changes the value of a form control?
input? When the value of an element changes
What event is fired when a user clicks the “submit” button within a form?
submit? Has the same effect as clicking the submit button on a form
What does the event.preventDefault() method do?
The preventDefault() method cancels the event if it is cancelable, meaning that the default action that belongs to the event will not occur.
What does submitting a form without event.preventDefault() do?
Runs the default event as normal
What property of a form element object contains all of the form’s controls.
formElement property?
What property of a form 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?
You then have to work through your code and figure out where the issue is
What is an advantage of having your console open when writing a JavaScript program?
You can see your progress and check for mistakes.
What is JSON
JavaScript Object Notation (JSON) is a standard text-based format for representing structured data based on JavaScript object syntax. It is commonly used for transmitting data in web applications (e.g., sending some data from the server to the client, so it can be displayed on a web page, or vice versa).
What are serialization and deserialization?
Serialization: is a process of converting an Object into a stream of bytes so that it can be transferred over a network or stored in a persistent storage.
Deserialization: is the exact opposite - Fetch a stream of bytes from network or persistence storage and convert it back to the Object with the same state.
Why are serialization and deserialization useful?
Allows you to send and store information that other people can use.
How do you serialize a data structure into a JSON string using JavaScript?
JSON.stringify() method
How do you deserialize a JSON string into a data structure using JavaScript?
JSON.parse() method
What is the event.target?
reference to the object that was triggered
What is the affect of setting an element to display: none?
Hides your element without deleting it
What does the element.matches() method take as an argument and what does it return?
the argument is a string representing the selector to test and the return is a boolean
How can you retrieve the value of an element’s attribute?
getattribute method
At what steps of the solution would it be helpful to log things to the console?
Every step
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?
individual event listeners
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?
if else block
How to you store data in localStorage?
You would use the setItem method
How to you retrieve data from localStorage?
You would use the getItem method
What data type can localStorage save in the browser?
JSON strings
When does the ‘beforeunload’ event fire on the window object?
when the window, the document and its resources are about to be unloaded.