JavaScript Flashcards
What is the purpose of variables?
to store or remember bits of information for the script.
How do you declare a variable?
variable keyword plus variable name (var, let, const)
How do you initialize (assign a value to) a variable?
with the assignment operator (=)
What characters are allowed in variable names?
letters, numbers, dollar sign or underscore
What does it mean to say that variable names are “case sensitive”?
that uppercase/lowercase letters are distinguished. score is not same as Score.
What is the purpose of a string?
to represent or manipulate text
What is the purpose of a number?
to represent or manipulate numbers for calculation.
What is the purpose of a boolean?
they allow us to make decisions in code. to determine if something is true or false.
What does the = operator mean in JavaScript?
assignment operator. assigns value to a variable.
How do you update the value of a variable?
variable name, equal sign, new value.
What is the difference between null and undefined?
null is purposeful emptiness; undefined is accidental emptiness.
Why is it a good habit to include “labels” when you log values to the browser console?
to make it clear which variables are being logged.
Give five examples of JavaScript primitives.
string, number, boolean, undefined, null
What data type is returned by an arithmetic operation?
number
What is string concatenation?
joining two or more strings together to create a single value
What purpose(s) does the + plus operator serve in JavaScript?
addition for arithmetic and string concatenation for string.
What data type is returned by comparing two values (<, >, ===, etc)?
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 group together a set of variables and function to create a model. to store multiple pieces of information that are related to each other.
What are object properties?
it’s the variable of the object. tells us about the object (name, number of rooms)
Describe object literal notation.
keyword var, object variable name, property key and value pairs.
How do you remove a property from an object?
use the operator ‘delete’ followed by dot or bracket notation.
What are the two ways to get or update the value of a property?
dot notation or square bracket notation
What are arrays used for?
to store a list or set of values that are related to each other
Describe array literal notation.
keyword var, name of array, equal sign, open square bracket, values separated by a comma, closing square bracket.
How are arrays different from “plain” objects?
the property (key) for each value is its index number. values in arrays are usually the same data type. there’s a length property.
What number represents the first index of an array?
0
What is the length property of an array?
it holds the number of items in an array.
How do you calculate the last index of an array?
array.length minus 1.
What is a function in JavaScript?
set of statements that performs a task or calculates a value.
Describe the parts of a function definition.
function keyword, function name with parameters, code block in curly braces.
Describe the parts of a function call.
The function’s name.
A comma-separated list of zero or more arguments surrounded by () parentheses.
When comparing them side-by-side, what are the differences between a function call and a function definition?
function definition is to declare a function;
function call is to invoke the function (to run the code).
What is the difference between a parameter and an argument?
parameter acts as a placeholder (declared during function definition); argument is the actual value we want to run through the function. (passed through during function call).
Why are function parameters useful?
used as a placeholder so we can use it to run multiple arguments.
What two effects does a return statement have on the behavior of a function?
- Causes the function to produce a value we can use in our program.
- Prevents any more code in the function’s code block from being run.
Why do we log things to the console?
to spot check that our code works and debug it, verification, landmark to see code execute.
What is a method?
function stored as the property of a object.
How is a method different from any other function?
there’s a dot notation for method. (object.method)
How do you remove the last element from an array?
pop() method ( array.pop() )
How do you round a number down to the nearest integer?
Math.floor() method. ( Math.floor(x) )
How do you generate a random number?
Math.random() method. ( Math.random() )
How do you delete an element from an array?
splice() method
How do you append an element to an array?
push() and unshift()
How do you break a string up into an array?
split() method.
Do string methods change the original string? How would you check if you weren’t sure?
No. You can check by console.logging the original variable for the string.
Is the return value of a function or method useful in every situation?
No
Give 6 examples of comparison operators.
=== , !=== , >, < , >=, <=
What is the purpose of an if statement?
to evaluate a condition and make a decision to execute code block or not.
Is else required in order to use an if statement?
no.
Describe the syntax (structure) of an if statement.
keyword if, condition, code to execute in code block
What are the three logical operators?
and (&&) , or (||), logical not (!)
How do you compare two different expressions in the same condition?
&& and ||
What is the purpose of a loop?
Loops check a condition to see if the code block will run again.
What is the purpose of a condition expression in a loop?
to check if we should keep going.
What does “iteration” mean in the context of loops?
An iteration of a loop happens each time the condition is evaluated to be true and the statement executes.
When does the condition expression of a while loop get evaluated?
before each loop iteration
When does the initialization expression of a for loop get evaluated?
once before the loop begins
When does the condition expression of a for loop get evaluated?
before each loop iteration
When does the final expression of a for loop get evaluated?
after each loop iteration, but before the next condition evaluation.
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?
it adds one to the counter
How do you iterate through the keys of an object?
with a for…in loops
What event is fired when a user’s cursor leaves a form control?
blur
What event is fired when a user places their cursor in a form control?
focus
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 <form>?
submit
What does the event.preventDefault() method do?
prevents browser from reloading with the form’s values in the URL
What does submitting a form without event.preventDefault() do?
it reloads the browser and it loads the form’s property keys into the URL bar.
What property of a form element object contains all of the form’s controls.
elements 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?
a lot of bugs and hard to trace where it’s coming from.
What is an advantage of having your console open when writing a JavaScript program?
you can catch errors while they’re happening.
What is JSON?
JavaScript Object Notation. data interchange format used to send and store information in computer systems.
What are serialization and deserialization?
deserialization: converting a string to a native object
serialization: converting from a native object to a string
Why are serialization and deserialization useful?
it turns data/objects into storable and transmittable formats that you can later reconstruct
How do you serialize a data structure into a JSON string using JavaScript?
JSON.stringify()
Accepts an object as a parameter, and returns the equivalent JSON string.
How do you deserialize a JSON string into a data structure using JavaScript?
JSON.parse()
Accepts a JSON string as a parameter, and returns the corresponding JavaScript object.
How do you store data in localStorage?
.setItem(keyName, keyValue)
How do you retrieve data from localStorage?
getItem(key)
What data type can localStorage save in the browser?
string
When does the ‘beforeunload’ event fire on the window object?
The beforeunload event is fired when the window, the document and its resources are about to be unloaded.
What is a method?
a function which is a property of an object.
How can you tell the difference between a method definition and a method call?
definition you will define function and assign it to a property and method call will have actual value/argument and dot notation.
Describe method definition syntax (structure).
declare object literal. method name. colon. function key word with parameters. code block.
Describe method call syntax (structure).
object.method(arguments)
How is a method different from any other function?
there’s a dot notation for method. (object.method)
What is the defining characteristic of Object-Oriented Programming?
Objects can contain both data (as properties) and behavior (as methods).
What are the four “principles” of Object-Oriented Programming?
Abstraction, Encapsulation, Inheritance, and Polymorphism
What is “abstraction”?
being able to work with (possibly) complex things in simple ways
What does API stand for?
Application Programming Interface
What is the purpose of an API?
For two or more computer programs to communicate with each other.
What is this in JavaScript?
it’s an implicit parameter of all JavaScript functions
What does it mean to say that this is an “implicit parameter”?
it is available in a function’s code block even though it was never included in the function’s parameter list or declared with var
When is the value of this determined in a function; call time or definition time?
The value of this is determined at call time.
What does this refer to in the following code snippet?
var character = {
firstName: ‘Mario’,
greet: function () {
var message = ‘It's-a-me, ‘ + this.firstName + ‘!’;
console.log(message);
}
};
nothing. it’s not being called yet.
Given the above character object, what is the result of the following code snippet? Why?
character.greet();
“It’s-a-me, Mario !” because this refers to the object to the left of the dot of the function call
Given the above character object, what is the result of the following code snippet? Why?
var hello = character.greet;
hello();
undefined. function is not being called as method. so you do not know what the value of this is.
How can you tell what the value of this will be for a particular function or method definition?
you can’t determine value of this without the function being called.
How can you tell what the value of this is for a particular function or method call?
find where the function is called and look for an object to the left of the dot.
What kind of inheritance does the JavaScript programming language use?
prototype-based (prototypal) inheritance.
What is a prototype in JavaScript?
an object that contains properties and 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 strings, arrays, and numbers?
They are defined in a prototype object and the strings/arrays/numbers are simply borrowing those methods when needed.
If an object does not have its own property or method by a given key, where does JavaScript look for it?
window
What 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.
creates an empty object, points the object to the constructor function, executes function with the given argument and binding it to “this”. it returns “this” value if it’s primitive.
What property of JavaScript functions can store shared behavior for instances created with new?
prototype property
What does the instanceof operator do?
The instanceof operator tests to see if the prototype property of a constructor appears anywhere in the prototype chain of an object. The return value is a boolean value
What is a “callback” function?
A callback function is 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(function, delay)
How can you set up a function to be called repeatedly without using a loop?
setInterval(function, delay)
What is the default time delay if you omit the delay parameter from setTimeout() or setInterval()?
0
What do setTimeout() and setInterval() return?
an interval ID which is a numeric, non-zero value to identify the timer.
What is AJAX?
A technique for loading data into part of a page without having to refresh the entire page.
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
An XMLHttpRequest object has an addEventListener() method just like DOM elements. How is it possible that they both share this functionality?
they have a shared prototype object