JavaScript Flashcards
- What is the purpose of variables?
Stores data to be used later
- How do youdeclarea variable?
keyword name = value;
- How do you initialize (assign a value to) a variable?
assignment operator
- What characters are allowed in variable names?
anyletter, $ _ or number(cant be first character)
- What does it mean to say that variable names are “case sensitive”?
the case sizing matters
- What is the purpose of a string?
not code read by JS strings contain values to be saved as they are.
- What is the purpose of a number?
used for math, or numeric values
- What is the purpose of a boolean?
true or false, the logic of JS
- How do you update the value of a variable?
name = value;
- What is the difference betweennullandundefined?
null is intentionally assigned by programmer and is an intentional emptiness. Undefined is a JS assignment which declares a variable to have no arguments.
- Why is it a good habit to include “labels” when you log values to the browser console?
to see what your console log is
- Give five examples of JavaScript primitives.
boolean, null, undefined, string, number
- What data type is returned by an arithmetic operation?
numbers
- What is string concatenation?
combines words
- What purpose(s) does the+plus operator serve in JavaScript?
adds valuess and concatenates strings
- What data type is returned by comparing two values (,===, etc)?
boolean
- What does the+=”plus-equals” operator do?
adds values and assigns them
What are objects used for?
create a model for information, like a phonebook
what are object properties?
Obj {property: value}
Object literal notation
{value, value,….};
how do you remove a property from an object
delete operator
what are the two ways to get or update the value of a property?
dot notation or square brackets
what are arrays used for
storing a list of information
describe array literal notation
[value,value,….];
how are arrays different from plain objects?
the properties are numeric
first index of array
0
how do you calculate the last index of an array?
array.length - 1
What is a function in JavaScript?
a reusable group of tasks to return and receive different values.
Describe the parts of a function
function name(parameters) {codeblock};
describe the parts of a function call
name (arguments);
- When comparing them side-by-side, what are the differences between a functioncalland a functiondefinition?
a definition has parameters, codeblock, keyword. A call has arguments.
What is the difference between a parameter and argument?
the parameter is the placeholder for an argument.
why are function parameters useful?
without them the function would do the same thing every time.
What two effects does a return statement have on the behavior of a function?
exits the codeblock and gives back the value.
what is a method?
function thats been saved into an object
How is a method different from any other function?
Methods are functions stored into property of an object.
remove the last element from an array
.pop();
round a number down to the nearest integer?
Math.floor(); or Math.trunc();
generate a random number
Math.random();
delet an element from an array
.splice();
append an element to an array
.push();
break up a string into array?
.split();
Do string methods change the original string? How can you check if unsure?
No, log the original string
is the return value of a function useful in every situation?
No
6 examples of comparison operators
> > = < <= === !==
data type comparsion expressions evaluate to
boolean
purpose of an if statement
add conditions to the code.
is else required for proper if statement?
NO
syntax of if statement
if (condition) {declaration};
three logical operators
&& || !
How do you compare two expressions in the same condition?
logical operator
purpose of a loop
repeated block of code happening until the conditions stated are false
Purpose of a condition expression
The brake of the loop, waiting until the boolean is false.
what is an iteration in the context of loops?
one repetition of the loop.
when does the condition expression of a while loop get evaluated?
before each iteration
when does the intialization expression of a for loop get evaluated?
it happens first, before anything else in the loop and it happens only once.
when does the condition expression of a for loop get evaluated?
after the intialization and it happens before each iteration
when does the final expression of a for loop get evaluated?
at the end of each iteration and before the condition
Besides areturnstatement, which exits its entire function block, which keyword exits a loop before itsconditionexpression evaluates tofalse?
break
the ++ operator
adds 1
how do you iterate through the keys of an object?
for in loop