More Basics Flashcards
How do you get all the keys in an object?
Object.getOwnPropertyNames() or Object.keys() - returns an array of object keys
How do you get all the values in an object?
Object.values() - returns an array of object values
How do you get all keys and values in an object?
Object.entries() returns an array of [key, value]
What is hoisting?
Hoisting is JavaScript’s default behavior of moving all declarations to the top of the current scope (to the top of the current script or the current function).
When are hoisted variables initialized?
JavaScript only hoists declarations, not initializations. Initializations occur as written in the code.
What happens due to hoisting when you declare a variable with let?
Variables defined with let and const are hoisted to the top of the block, but not initialized.
Meaning: The block of code is aware of the variable, but it cannot be used until it has been declared.
Using a let variable before it is declared will result in a ReferenceError.
What happens due to hoisting when you declare a variable with const?
Variables defined with let and const are hoisted to the top of the block, but not initialized.
Meaning: The block of code is aware of the variable, but it cannot be used until it has been declared.
Using a const variable before it is declared, is a syntax errror, so the code will simply not run.
What does Javascript evaluate as a boolean False?
false, 0, ‘ ‘, “ “, null, undefined, NaN
What does Javascript evaluate as a boolean True?
‘0’, ‘false’, [ ], { }, function() { }
What is the rule of precision for decimal numbers?
Always treat them as approximations.
What does the template literal ${} do inside a string?
Evaluates whatever is inside the {}
What is one value in javascript that doesn’t equal itself?
NaN
How do you test whether a variable has a real value?
== or != null
What does the || operator do?
Returns the left value if true and the right value otherwise.
What are legal characters for binding names?
Letters, numbers, $, and _
What functions convert data to different types?
Number, String, Boolean
What function call evaluates if the input is a number?
Number.isNan (use ! to determine if the input is a number)
What is lexical scoping?
Each local scope can see the local scopes that contain it, and all scopes can see the global scope.
What happens when you make a function call with extra parameters?
Nothing, the function ignores the extra values.
How do you copy all properties from one object to another?
Object.assign(Original, Copy)
What does == do when applied to Objects?
Checks whether they point to the same Object, not whether the contents are equivalent.
What are the two ways to access a value’s properties?
Bracket and dot notation
What’s the difference between the bracket and dot notation?
The word after the dot is the literal name of the property, the data in brackets is evaluated. For dot notation, the word should be a valid binding (not a number or variable).
What happens if you read an object property that doesn’t exist?
You get undefined.
What does the binary in operator do on an object?
It returns true or false if the object has or doesn’t have a property.
How do you get all property names in an object?
Object.keys(objName) returns an array of object keys.
What types of values are immutable and what does that mean?
Numbers, Strings, booleans. You can’t change them but you can combine them and derive new values from them. For example, you can’t change the string “cat” to “rat.”
What happens if you pass concat an argument that isn’t an array?
It treats the object like a one element array.
What is unique about using indexOf on a string?
It can search for multiple-character patterns - i.e “three”.indexOf(“ee”);
What do string.split and string.join do?
split the string into an array strings every time (arg) appears and join an array of strings into string with (arg) as a separator.
how do you add a string to itself?
string.repeat(x) - repeats a string x times
What are restrictions on JSON bindings?
All property names have to be surrounded by double quotes and only simple expressions are allowed (no function calls, bindings, or anything requiring computation.