Javascript Flashcards
What are arrays used for?
Storing lists, especially lists of ordered or related data.
Describe array literal notation.
Comma-delineated items between square brackets.
[ item1, item2 . . . ]
How are arrays different from “plain” objects?
The keys in arrays are numbers instead of strings; Arrays are numerically indexed.
What number represents the first index of an array?
0
What is the length property of an array?
The number of items in the array.
How do you calculate the last index of an array?
arrayLength - 1
What are objects used for?
They group together related information (ie. variables and functions)
In OOP (object oriented programming) objects are used to model areal-world objects.
What are object properties?
Key-value pairs consisting of a property and its value.
Describe object literal notation.
Comma-delineated key-value pairs between curly braces.
{ prop1: val1, prop2: val2, . . . }
How do you remove a property from an object?
The delete operator.
What are the two ways to get or update the value of a property?
Dot notation (using member operator) and bracket notation
What data type is returned by an arithmetic operation?
number
What is string concatenation?
Joining strings together
What purpose(s) does the + plus operator serve in JavaScript?
Adding numbers and concatenating strings
What data type is returned by comparing two values (, ===, etc)?
boolean
What does the += “plus-equals” operator do
It is shorthand for performing addition or concatenation and then assigning the result to the variable on the left.
What is the purpose of variables?
Temporarily store pieces of data while a program is running.
How do you declare a variable?
Using the keyword const, let, or var followed by the variable name
How do you initialize (assign a value to) a variable?
using the assignment operator (=) var varName = aValue;
What characters are allowed in variable names?
Letters, numbers, $, and _ (underscore). Variables names cannot start with a number.
What does it mean to say that variable names are “case sensitive”?
Lower and upper case letters are considered different characters.
What is the purpose of a string?
Store and represent text date/characters
What is the purpose of a number?
Represent/store numeric data so you can do math/arithmetic.
What is the purpose of a boolean?
To represent/store binary data which lets you do logic
What is the difference between null and undefined?
Undefined means ‘no value given yet’; null explicitly means ‘nothing’ or ‘intentional absence’
Why is it a good habit to include “labels” when you log values to the browser console?
Helps with debugging since a label can indicate where and what variable a value comes from.
Give five examples of JavaScript primitives
string, number, boolean, undefined, null, …symbol is also a type
What is a function in JavaScript?
A named, reusable block of code that performs a task. Functions can accept inputs and return outputs
Describe the parts of a function definition.
- The function keyword
- optional function name
- list of 0 or more parameters,
- code block surrounded by curly braces, 5. optional return statement inside the code block
Describe the parts of a function call.
- Function name
2. pair of parentheses, containing arguments
When comparing them side-by-side, what are the differences between a function call and a function definition?
A function definition contains the function keyword and a code block, function call does not have these
What is the difference between a parameter and an argument?
Parameters appear in the function definition. Arguments are the actual input values a function is called with.
Why are function parameters useful?
Parameters let you pass inputs into a function for it to use
What two effects does a return statement have on the behavior of a function?
- causes the function to stop running/exits the function.A return statement also 2. causes the function to produce a value/output that can then be used by the rest of your program
Why do we log things to the console?
To know what your data looks like;
Logging to console lets you check the value of a variable at a specific place/time in the running of the code
What is a method?
A method is a function which is a property of an object.
How is a method different from any other function?
A method is part of/associated with an object. A function is not.
How do you remove the last element from an array?
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() method
How do you delete an element from an array?
Array.splice() method
How do you append an element to an array?
Array.push()
How do you break a string up into an array?
String.split()
Do string methods change the original string? How would you check if you weren’t sure?
No, because strings are immutable.
Log to console or check MDN to check yourself.
Is the return value of a function or method useful in every situation?
No. Just because a function returns a value doesn’t mean you have to use it.
What is the purpose of a loop?
Repeating a block of code a set number of times.
What is the purpose of a condition expression in a loop?
Checks if it’s time for the loop to stop
What does “iteration” mean in the context of loops?
A single run of the code in the loop’s code block
When does the condition expression of a while loop get evaluated?
Before each iteration of the while-loop.
When does the initialization expression of a for loop get evaluated?
Once before the loop begins any iterations
When does the condition expression of a for loop get evaluated?
Before the first iteration and then before each subsequent iteration of the for-loop.
When does the final expression of a for loop get evaluated?
After the completion of each iteration
Besides a return statement, which exits its entire function block, which keyword exits a loop before its condition expression evaluates to false?
Keyword ‘ break ‘
What does the ++ increment operator do?
It is the shorthand equivalent to +=1
How do you iterate through the keys of an object?
for…in loop
Give 6 examples of comparison operators.
> , =, <=, === (strictly equal), == (loosely equal)
What data type do comparison expressions evaluate to?
boolean
What is the purpose of an if statement?
Lets your code do different things based on the result of a comparison
Is else required in order to use an if statement?
no
Describe the syntax (structure) of an if statement.
if keyword , condition, if-block, optional else-block
What are the three logical operators?
&& (and), || (or), ! (not)
How do you compare two different expressions in the same condition?
Using && operator or || operator (or the ! versions)
What is a “callback” function?
A function that is passed as an argument into another function. The function it’s passed into calls it later to perform some task
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?
The setTimeout() method
How can you set up a function to be called repeatedly without using a loop?
The setInterval() method
What is the default time delay if you omit the delay parameter from setTimeout() or setInterval()?
Default delay is 0 (ms), meaning as soon as possible;
The delay you set is the minimum amount of time elapsed before callback is run
What do setTimeout() and setInterval() return?
A timer id.
Use this id in clearTimeout() or clearInterval() to cancel timeout or interval
In JavaScript, when is a function’s scope determined; when it is called or when it is defined?
When it is defined