Notes JavaScript Flashcards
What must all methods have?
a period
method name
parentheses
Define methods
They return information about an object and are called by appending an instance.
Define Built in objects
Contain methods that can be called by appending the object name with a period, method name and parentheses.
Define Template Literals
They are strings that allow embedded expressions ${expression}
They use back ticks instead of quotation marks. key below esc button
What does an iteration statement do?
Updates the iterator each time the loop is created
What does a stopping condition do?
Determines when to stop looping. It will run until the expression evaluates to false.
What does initialization do?
Defines where to begin the loop by declaring (or referencing) the iterator variable.
Define how objects execute “when passed as arguments”.
They are passed by reference and are therefore mutable.
The object itself is not a copy
The object is accessible and mutable inside the function.
Define Javascript object literal value key pairs.
*Key-value pairs of an object can be referred to as properties.
*They are enclosed in curly brackets {}
*Values are mapped to keys in the object with a colon symbol :
*Key value pairs are separated by commas ,
*All keys are unique, VALUES are not.
What does method Math.floor (); do?
Returns the largest number integer less than or equal to the given number.
What does Math.random (); do?
Returns a number between 0 and 1
Define numbers.
Primitive data type
include the set of all integers and floating point numbers.
Define block scope variables.
The variables ‘const’ and ‘let’ are only accessible in their block or nested block.
Define code block scope.
Only visible within a code block – in-between curly brackets.
{…}
Define function scope.
Only visible within the function
Define file or module scope.
The value/function can only be accessed from within the file.
Define Global scope.
A value/function in global scope can be used anywhere in the entire program.
Define scope.
Scope is a concept that refers to where values and functions can be accessed.
Define strings.
They are a primitive data type
They are any grouping of characters (letters, spaces, number or symbols) surrounded by single or double quotes.
Define console.log
A method that is used to log or print messages to the console.
Define .length
.length is a property of the string
Returns the number of characters that make up the string
indicates the number of elements an array contains.
Define “else block”.
Else block is added to a an “if” block or series of “else if” code blocks.
The “else” block will be executed only if the “if” condition fails.
Explain what methods do.
Methods return information about an object.
Are called by an instance with a period.
.”the method”, name and parentheses
example: console.log ()
Explain “undefined”.
Undefined is a primitive Javascript value.
It represents lack of defined value
Variables declared but not initialized will have a value undefined.
Define “let”.
Creates a local variable in Javascript.
It can be re-assigned.
What happens if you use a function with parentheses
The function is being called right then and there.
What happens when you use a function without parentheses
The function is being assigned to the event handler, to be run later when that event happens.
Define .map()
.map () executes a callback function on each element of an array.
The original array does not get altered, and the returned array may contain different elements than the original array.
Define anonymous functions
Anonymous functions in Javascript do not have a name property.
They can be defined using the function keyword or as an arrow function.
What is a “function declaration”?
A function body enclosed in a set of curly brackets {}.
How are “function declarations” used?
Function declarations are used to create named functions.
These functions can be called using their declared name.
What do the “function declarations” include?
The function keyword
The function name
Parentheses
**An optional list of parameters are separated by commas and enclosed in parentheses.
Define function expression
Function expressions create functions inside an expression instead of as a function declaration.
They can be anonymous and/or assigned a variable.
Define arguments
Values passed into a function when it is called.
Define calling functions
Functions can be called or executed elsewhere in the code using parentheses following the function name.
When called the code inside its function body will run.
Define “arrow function” properties.
Arrow function expression does not require the function keyword
=> separates the parameter from the body
Arrow functions with a single parameter
do not need parentheses around the parameter list.
Arrow functions with a single expression can use the concise function body which returns the result of the expression without sing the return keyword.
Define Logical “NOT !” operator.
! will invert a boolean value
! will invert the truthiness of Non-boolean values.
Define “break”.
Break is used with “switch”
If “break” is omitted from the block of a case the switch statement will continue
to check against case values until a break is encountered or the flow is broken.
Define “case” clause.
Case clause is used with “switch”
If there are no matches but a default “clause” is included in the code inside then “default” will be executed.
Define “switch statements”.
Provides a means of checking an expression against multiple case clauses
Case clauses should finish with a “break”.
List the “Falsy” Values
False
0
empty strings
NULL
UNDEFINED
NAN
Define logical OR || operator.
The || operator checks to values an returns a boolean.
If one or both values are truth, it will return TRUE.
If both are false it will return FALSE.
The button on the keyboard is above the return button used with shift key.
Define String Interpolation.
String interpolation is the process of evaluating string literals containing one ore more place holders
(Expressions, variables, etc)
${…}
It can be performed using template literals
TEXT${expression}TEXT
Define variables.
A variable is a container for data that can be used in the program elsewhere.
To declare a variable use these keywords with a variable name.
VAR
LET – preferred way to declare when it can be reassigned
CONST– variable with a constant value.