JavaScript Flashcards
What is the purpose of variables?
To store data(information) for a script.
How do you declare a variable?
You must declare the variable with a name. Providing a keyword (var) to declare a variable with a name.
How do you initialize (assign a value to) a variable?
You use the equal sign = (assignment)
What characters are allowed in variable names?
Letters, numbers (if it’s not the first character), $ or _
What does it mean to say that variable names are “case sensitive”?
Lowercase and uppercase letters are different.
What is the purpose of a string?
To hold a sequence of characters or text.
What is the purpose of a number?
For math and calculations.
What is the purpose of a boolean?
Conditional data type to determine if something is true or false.
What does the = operator mean in JavaScript?
It assigns things.
How do you update the value of a variable?
Use the variable name and assign it a new value.
What is the difference between null and undefined?
null is an intentional absence of value. Must be assigned.
undefined – javaScript says there’s nothing there.
Why is it a good habit to include “labels” when you log values to the browser console?
There’s no context as to what it is or where it came from without labels.
Give five examples of JavaScript primitives.
String, number, Boolean, null, undefined.
What data type is returned by an arithmetic operation?
numbers
What is string concatenation?
Combines multiple strings together.
What purpose(s) does the + plus operator serve in JavaScript?
Addition adds one value to another.
What data type is returned by comparing two values (<, >, ===, etc)?
boolean
What does the += “plus-equals” operator do?
Adds the value to the right of the operand to a variable and assigns the result to the variable.
What are objects used for?
Group together a set of variables or properties and values to describe something. A collection of variables.
What are object properties?
Properties or variables that have a value within an object.
Describe object literal notation.
Assign an object literal to a variable. Within the object are names of properties and their corresponding values.
How do you remove a property from an object?
Delete operator Ex. delete pet.name
What are the two ways to get or update the value of a property?
Dot notation or bracket notation.
What are arrays used for?
Arrays store a list of values. Values can then be accessed if they are in a numbered list.
Describe array literal notation.
Create an array and give it a name. the values are assigned to the array inside a pair of brackets and each value is separated by a comma.
How are arrays different from “plain” objects?
Arrays have a length property. Arrays have an order. Objects you create properties and assign them a value. Arrays you would normally assign a method to add data to an array. arr.push() can also arr[0] = “Something”
What number represents the first index of an array?
0
What is the length property of an array?
It tells you how many items are in an array. .length
How do you calculate the last index of an array?
Length property -1. .length - 1
What is a function in JavaScript
It’s a tool used to write code for reuse throughout a program, giving a name to a handful of code statements to make it easier to read and makes code dynamic to handle many situations. It takes in data and spits out data.
Describe the parts of a function definition.
Function keyword to begin the creation of a function.
An optional name of the function.
A list of zero or more parameters within parentheses.
The start of the functions code block indicated by an opening curly brace {
An optional return statement.
End of the function code block indicated by closing curl braces }
Describe the parts of a function call.
The functions name.
List of zero or more arguments within parentheses.
When comparing them side-by-side, what are the differences between a function call and a function definition?
Function definition has a code block and a keyword.
What is the difference between a parameter and an argument?
We declare or define parameters during the definition of the function. It is a placeholder variable whose value is not known until we call the function and pas san argument. An argument is the actual value that will be passed through to the parameter.
Why are function parameters useful?
Parameters are placeholders for variables. When we call a function we can pass whatever arguments we want to the parameter. We can change the output by calling the function with the arguments and the parameters will change within the codeblock to whatever we set the argument to. Parameters allow a function to perform tasks without knowing the specific input values ahead of time.
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.
Give 6 examples of comparison operators.
> < >= <= === !==
What data type do comparison expressions evaluate to?
boolean
What is the purpose of an if statement?
Evaluates or checks a condition. If the condition is true, the statements in the following codeblock are executed. To make a choice.
Is else required in order to use an if statement?
No. If you require code to run only when the statement returns true an else statement is not needed.
Is else required in order to use an if statement?
No. If you require code to run only when the statement returns true an else statement is not needed.
Describe the syntax (structure) of an if statement.
Keyword if
Condition (score>=50)
Opening a curly brace for declaration block
the code to execute.
Closing curly brace for the declaration block.
What are the three logical operators?
&& (logical and), || (logical or), ! (logical not)
How do you compare two different expressions in the same condition?
By using logical operators.
(Expression 1) logical operator (expression 2)
(1<2) || (3>4) > true
Why do we log things to the console?
To see if there are any bugs in the code. The browser will print errors and warnings as they occur in the JS code.
What is a method?
A function which is a property of an object. There are two kinds:
Instance methods which are built-in tasks performed by an object instance.
Static methods: which are tasks that are called directly on an object constructor.
How is a method different from any other function?
methods are associated with objects.
How do you remove the last element from an array?
The pop() method.
How do you round a number down to the nearest integer?
Math.floor() Floor method of the Math object.
How do you generate a random number?
Math.random() Random method of the Math object. Random value between 0 and 1. As a percentage. You can multiply to something.
How do you delete an element from an array?
Splice() method pass through the array index.
How do you append an element to an array?
The 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?
They don’t change the original string. If you wanted to change them you would have to replace them. Console.log
Is the return value of a function or method useful in every situation?
Not always. ** look into.
What is the purpose of a loop?
To repeatedly run a block of code until a certain condition is met. Returns false.
What is the purpose of a condition expression in a loop?
It determines when the loop will stop.
What does “iteration” mean in the context of loops?
One execution of the loops conditional code block.
When does the condition expression of a while loop get evaluated?
Before each iteration.
When does the initialization expression of a for loop get evaluated?
That is the first thing the for loop does.
When does the condition expression of a for loop get evaluated?
After the initialization expression and after the final expression. Or before the iteration of the codeblock.
When does the final expression of a for loop get evaluated?
After each iteration of the codeblock.
Besides a return statement, which exits its entire function block, which keyword exits a loop before its condition expression evaluates to false?
Break. Causes the termination of the loop and tells the interpreter to go onto the next statement outside of code outside of the loop.
What does the ++ increment operator do? Arithmetic
Adds 1 to its operand. Increases the value of the variable by 1.
How do you iterate through the keys of an object?
For in loop.
What is JSON?
JavaScript Object Notation
A standard text-based format for representing structured data based on Javascript object syntax.
What are serialization and deserialization?
Serialization: converting data(object) to a string
Deserialization: converting string to object
Why are serialization and deserialization useful?
Serialization allows data to be stored in memory and makes it easier to transfer data across a network.
Deserialization makes it so that data is easier to interact with by turning a bytes into an object in memory.
How do you serialize a data structure into a JSON string using JavaScript?
JSON.stringify(). pass through the data as an argument.
How do you deserialize a JSON string into a data structure using JavaScript?
JSON.parse(). Pass through the string as an argument.
How do you store data in localStorage?
localStorage.setItem() method.
How do you retrieve data from localStorage?
localStorage.getItem() method.
What data type can localStorage save in the browser?
‘string’ needs serialized data.
When does the ‘beforeunload’ event fire on the window object?
Before the page unloads.
What is a method?
A function that is a property of an object.
How can you tell the difference between a method definition and a method call?
A method definition has the keyword function and { } for the function code block. A method call is what we see. Object dot notation method name and ( ).
Describe method definition syntax (structure).
{property: function methodName ([optional parameters]) {code block},}
Describe method call syntax (structure).
Object.methodName( )
How is a method different from any other function?
A method needs dot notation or bracket notation. Also a method belongs to an object as a property of the object.
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, polymorphism
What is “abstraction”?
It is a process that enables a user to work with complex things in simple ways.
What does API stand for?
Application programming interface
What is the purpose of an API?
Selection of tools (set of code features such as methods, properties, events, and URLs) to make it easier for developers to interact with software.
What is this in JavaScript?
‘this’ is an implicit parameter of all JavaScript functions. Off of the object
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 parameters list or declared with var.
When is the value of this determined in a function; call time or definition time?
Call.
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);
}
};
Do not know yet. The value of ‘this’ can only be determined during call time (not during a function definition)
Given the above character object, what is the result of the following code snippet? Why?
var character = {
firstName: ‘Mario’,
greet: function () {
var message = ‘It's-a-me, ‘ + this.firstName + ‘!’;
console.log(message);
}
};
character.greet();
Result = “it’s-a-me, Mario!” because ‘this’ refers to the object being called. The object firstName property has the value of Mario.
var character = {
firstName: ‘Mario’,
greet: function () {
var message = ‘It's-a-me, ‘ + this.firstName + ‘!’;
console.log(message);
}
};
var hello = character.greet;
hello();
Result = “it’s-a-me, undefined!” because ‘this’ refers to the window (hello is not a property of an object, therefore default object would be the window object). Window object does not have the property frisrtName so therefore, ‘this.firstNAme” has the value of undefined.
How can you tell what the value of this will be for a particular function or method definition?
You can’t. the value of ‘this’ is determined at call time.
How can you tell what the value of this is for a particular function or method call?
By looking to the left of the dot. (the object) if no dot it’s the window.
What kind of inheritance does the JavaScript programming language use?
JS uses prototype-based inheritance
What is a prototype in JavaScript?
Exiting inbuilt functionality 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?
Due to JS prototypes; models that was created that contain these methods.
If an object does not have it’s own property or method by a given key, where does JavaScript look for it?
From the object’s prototype, if it’s not there then object’s object’s prototype.
What does the new operator do?
Creates a blank, plain Javascript object
Links the newly created object to another object by setting the other object as its parent prototype;
Passes the newly created object from step 1 as the this context;
Returns this if the function doesn’t return an object.
What property of JavaScript functions can store shared behavior for instances created with new?
Prototype property
What does the instanceof operator do?
It tests to see if the prototype property of a constructor appears anywhere in the prototype chain of an object. Returns a Boolean.
What is a “callback” function?
It is a function passed in through 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?
Use setTimeout() function.
How can you set up a function to be called repeatedly without using a loop?
Use setInterval() function.
What is the default time delay if you omit the delay parameter from setTimeout() or setInterval()?
0 (zero)
What do setTimeout() and setInterval() return?
setTimeout( ): the returned timoutID is a positive integer value which identifies the timer created by the call to setTimout( ).
setInterval( ):The returned intervalID is a numeric, non-zero value which identifies the timer created by the call to setInterval( )
What is AJAX?
Is 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 (XML is precursor to JSON)
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?
They share a prototype. Both are chained to the EvenTarget Prototype.