Objects Flashcards
What is an object ?
An object is a composite value: it aggregates multiple values (primitive values or other objects) and allows you to store and retrieve those values by name.
An object is an unordered collection of properties, each of which has a name and a value. Property names are usually strings (although, as we’ll see in §6.10.3, property names can also be Symbols), so we can say that objects map strings to values.
What are the other common names of “string-to-value” mapping structures in other programming languages ?
hash, hashtable, dictionary, associative array
What makes a javascript object something more than a simple “string-to-value” map ?
A javascript object also inherits the properties of another object, known as its “prototype”.
What are types possible for the property names of an object
String (most common one) and Symbol.
The other types are converted to String.
What are the possible values of a javascript object property ?
Any javascript value, or a getter or setter function (or both)
What is a prototype ?
A prototype is an object that make one or many other objects inherits of its properties.
Almost every javascript object has a second javascript object associated with it: its prototype.
What property of the constructor function is used as the prototype for objects created with the new keyword?
The value of the prototype property of the constructor function
This means that the newly created object inherits properties and methods from the constructor’s prototype.
True or False: Objects created using the new keyword do not inherit from the constructor’s prototype.
False
Objects created with the new keyword inherit from the prototype of the constructor function.
What happens to the prototype of an object created using a constructor function?
It uses the value of the prototype property of the constructor function
This establishes a prototype chain for the newly created object.
What is unique about Object.prototype?
It has no prototype and does not inherit any properties.
This makes Object.prototype a rare object in JavaScript.
Do most built-in constructors inherit from Object.prototype?
Yes, most built-in constructors and user-defined constructors have a prototype that inherits from Object.prototype.
Examples include constructors like Date, Array, and others.
What is the term for the linked series of prototype objects?
Prototype chain.
This chain allows objects to inherit properties from one another in JavaScript.
True or False: Object.prototype inherits properties from another object.
False.
Object.prototype is the base object and does not have a prototype.
Fill in the blank: Most user-defined constructors have a prototype that inherits from __________.
Object.prototype.
This is a fundamental aspect of JavaScript’s prototypal inheritance.
What does Object.create() do?
Creates a new object, using its first argument as the prototype of that object
What properties does o1 inherit in the example let o1 = Object.create({x: 1, y: 2})?
x and y
What happens when you pass null to Object.create()?
Creates a new object that does not have a prototype, inheriting no properties or methods
What is the effect of creating an object with let o2 = Object.create(null)?
o2 inherits no properties or methods
How do you create an ordinary empty object using Object.create()?
Pass Object.prototype as the argument
What is the example code for creating an ordinary empty object with Object.create()?
let o3 = Object.create(Object.prototype)
What does the second argument of Object.create() do?
Describes the properties of the new object (advanced feature)
What is one use case for Object.create() mentioned in the text?
Guard against unintended modifications of an object by a library function
What is the purpose of passing Object.create(o) to a library function?
To prevent accidental modifications to the original object
What will happen if the library function sets properties on the object created by Object.create(o)?
Those writes will not affect the original object
True or False: If you create an object with Object.create(null), it can still use basic methods like toString().
False
What must the expression inside the square brackets evaluate to?
A string or a value that can be converted to a string or to a Symbol
This is specified in §6.10.3.
Fill in the blank: The expression inside the square brackets must evaluate to a _______.
string or a value that can be converted to a string or to a Symbol
True or False: The square bracket notation is only applicable to strings.
False
It can also apply to values that can be converted to a string or to a Symbol.
How do JavaScript objects inherit properties?
From their prototype object through the prototype chain
When querying a property, what happens if the object does not have that property?
The prototype object is queried for the property
What is the prototype chain?
A linked list of objects from which properties are inherited
What happens when you assign a value to an existing own property?
The value of the existing property is changed
What occurs when you assign a value to a property that does not exist on the object?
A new property is created on the object
What is hidden when a new own property is created with the same name as an inherited property?
The inherited property is hidden
How does property assignment work in relation to the prototype chain?
It examines the prototype chain only to determine if the assignment is allowed
What happens if a property is inherited and is read-only?
The assignment is not allowed
What is the effect of property assignment on the prototype chain?
It never modifies objects in the prototype chain
What is a key feature of JavaScript regarding property inheritance?
Inheritance occurs when querying properties but not when setting them
What happens when an object overrides an inherited property?
The inherited property remains unchanged in the prototype
What is an accessor property in JavaScript?
A property that has a getter and/or setter method
True or False: Property assignments in JavaScript modify the prototype chain.
False
What happens when you delete a property that does not exist?
The delete expression evaluates to true.
Can the delete operator remove inherited properties?
No, it only deletes own properties.
How can you delete an inherited property?
Delete it from the prototype object.
What is the result of deleting a non-configurable property in strict mode?
Causes a TypeError.
What will the delete operator return when used on a non-configurable property in non-strict mode?
Evaluates to false.
What is the result of the expression ‘delete Object.prototype’?
Evaluates to false: property is non-configurable.
Can you delete a global variable created by variable declaration?
No, it cannot be deleted.
What happens in strict mode if you try to delete an unqualified identifier like x?
Raises a SyntaxError.
Fill in the blank: The delete operator only deletes ______ properties.
own
True or False: The delete operator can remove properties with a configurable attribute of true.
True.
What happens when you delete a property that has already been deleted?
Evaluates to true.
What is the purpose of enumerating properties in JavaScript?
To iterate through or obtain a list of all the properties of an object.
Which loop is commonly used to enumerate properties of an object?
for/in loop
What does the for/in loop assign to the loop variable?
The name of the property
Are built-in methods that objects inherit enumerable?
No, they are not enumerable.
Give an example of an object with enumerable properties.
let o = {x: 1, y: 2, z: 3};
What will o.propertyIsEnumerable(‘toString’) return?
false
How can you skip inherited properties in a for/in loop?
By checking with o.hasOwnProperty(p)
What can you use to get an array of property names from an object?
Object.keys(), Object.getOwnPropertyNames(), Object.getOwnPropertySymbols(), Reflect.ownKeys()
What does Object.keys() return?
An array of the names of the enumerable own properties of an object.
What does Object.getOwnPropertyNames() return?
An array of the names of non-enumerable own properties as well.
What does Object.getOwnPropertySymbols() return?
Own properties whose names are Symbols.
What does Reflect.ownKeys() return?
All own property names, both enumerable and non-enumerable, and both string and Symbol.
What is the order of property enumeration defined by ES6?
String properties named with non-negative integers first, then remaining string properties, and finally Symbol properties.
In what order are string properties with non-negative integers listed?
In numeric order from smallest to largest.
How are properties that look like array indexes enumerated?
They are listed first in numeric order.
How are remaining string properties listed?
In the order they were added to the object.
What is the enumeration order for Symbol properties?
In the order in which they were added to the object.
Is the enumeration order for the for/in loop tightly specified?
No, it is not as tightly specified.
What happens if a property by the same name has already been enumerated?
It will not be enumerated again.
What is the ES6 method used for copying properties from one object to another?
Object.assign()
What does Object.assign() modify and return?
The first argument, which is the target object
Does Object.assign() alter the source objects?
No, it does not alter the source objects
What types of properties does Object.assign() copy to the target object?
Enumerable own properties of the source object, including Symbol properties
How does Object.assign() handle properties with the same name?
Properties in the first source object override properties in the target object
What happens if a source object has a getter method during the copy process?
The getter method is invoked, but it is not copied
What is one reason to copy properties from one object to another?
To copy default values into another object if a property does not already exist
What is the potential issue with using Object.assign() for copying defaults?
It overwrites everything in the target object with defaults
How can you avoid overwriting existing properties when copying defaults?
Create a new object and copy defaults into it, then override with properties in the target object
How can you express the object copy-and-override operation using the spread operator?
o = {…defaults, …o}
What does the merge() function do differently than Object.assign()?
It only copies properties if they are missing in the target object
What is an example of using Object.assign() with properties?
Object.assign({x: 1}, {x: 2, y: 2}, {y: 3, z: 4}) // => {x: 2, y: 3, z: 4}
What could a subtract() function do?
Remove all of the properties of one object from another object
What is object serialization?
The process of converting an object’s state to a string from which it can later be restored.
Which functions are used to serialize and restore JavaScript objects?
JSON.stringify() and JSON.parse()
What does JSON stand for?
JavaScript Object Notation
How is JSON syntax related to JavaScript syntax?
JSON syntax is a subset of JavaScript syntax.
What types of values can be serialized and restored using JSON?
- Objects
- Arrays
- Strings
- Finite numbers
- true
- false
- null
What happens to NaN, Infinity, and -Infinity during serialization?
They are serialized to null.
How are Date objects serialized in JSON?
They are serialized to ISO-formatted date strings.
What happens to Date objects when using JSON.parse()?
They remain in string form and do not restore the original Date object.
Can Function, RegExp, and Error objects be serialized or restored?
No, they cannot be serialized or restored.
What happens to the undefined value during serialization?
It cannot be serialized or restored.
What does JSON.stringify() serialize?
Only the enumerable own properties of an object.
What happens if a property value cannot be serialized?
That property is simply omitted from the stringified output.
What optional arguments can JSON.stringify() and JSON.parse() accept?
They can accept arguments to customize the serialization and/or restoration process.
Fill in the blank: JSON.stringify() and JSON.parse() can convert certain values during the _______.
[serialization or stringification process]
True or False: JSON can represent all JavaScript values.
False
What is the purpose of the Date.toJSON() function?
To serialize Date objects to ISO-formatted date strings.
What type of properties do objects inherit from Object.prototype?
Methods
What is the purpose of the toString() method?
Returns a string that represents the value of the object
What does the default toString() method return for an object?
[object Object]
How can you define a custom toString() method for an object?
By creating a function that returns a string representation of the object
What is the purpose of the toLocaleString() method?
Returns a localized string representation of the object
What does the default toLocaleString() method do?
Calls toString() and returns that value
Which classes define customized versions of toLocaleString()?
Date and Number classes
How does Array’s toLocaleString() method differ from its toString() method?
Formats array elements by calling their toLocaleString() methods
What is the valueOf() method used for?
Converts an object to a primitive type, typically a number
When is the valueOf() method called automatically?
When an object is used in a context requiring a primitive value
What does the Date class’s valueOf() method do?
Converts dates to numbers for chronological comparison
What does the toJSON() method do?
Called by JSON.stringify() to serialize an object
What happens if a toJSON() method exists on an object during serialization?
It is invoked, and its return value is serialized
What does the point object’s toJSON() method return in the given example?
The string representation of the point
Fill in the blank: The _______ method is used for conversions to numbers.
valueOf()
True or False: The toString() method takes arguments.
False
What does the expression Number(point) evaluate to if point’s valueOf() returns the distance from the origin?
The calculated distance
What will point.toLocaleString() return if the point object is defined with localized formatting?
A string representation with localized number formatting
What is the ES6 shorthand properties syntax?
Allows creating an object with properties using variable names without repeating them
Example: let o = { x, y } instead of let o = { x: x, y: y }.
What are computed property names in ES6?
Property names that are defined using expressions enclosed in square brackets
Example: let o = { [PROPERTY_NAME]: 1 }.
What are Symbols in JavaScript?
Unique and immutable primitive values used as property names
Symbols are created using the Symbol() function.
What is the spread operator in ES2018?
A syntax that allows copying properties from one object to another using …
Example: let rect = { …position, …dimensions }.
How do you define a method in an object literal in ES6?
Using shorthand syntax by omitting the function keyword and colon
Example: let square = { area() { return this.side * this.side; } }.
What are accessor properties in JavaScript?
Properties that use getter and/or setter methods instead of a single value
Example: get accessorProp() { return this.dataProp; }.
What is the purpose of a getter method?
To return the value of a property when it is accessed
Example: get r() { return Math.hypot(this.x, this.y); }.
What is the purpose of a setter method?
To set the value of a property when it is assigned
Example: set r(newvalue) { this.dataProp = newvalue; }.
What happens if both getter and setter methods are defined for a property?
The property is read/write
If only a getter is defined, it is read-only; if only a setter is defined, it is write-only.
What is the result of using the spread operator with objects that have the same property names?
The last property value will override the previous one
Example: let p = { x: 0, …o }; p.x will take the value from o.
True or False: Symbols can be used to create non-conflicting property names.
True
Each Symbol is unique, making them ideal for property names.
Fill in the blank: Accessor properties can be defined with an extension to the object literal syntax using ______ and ______.
get and set
What is the significance of the this keyword in getter and setter methods?
It refers to the object on which the methods are defined
Allows access to other properties of the same object.
What type of properties can be created using Symbols?
Unique property names that do not conflict with other properties
Example: let o = { [symbol]: value }.
What does the spread operator do in terms of performance?
It can represent an O(n) operation, impacting performance with large objects
Using … in a loop could lead to inefficient algorithms.
What does a read-only accessor property do?
Only has a getter method and cannot be written to
Example: get theta() { return Math.atan2(this.y, this.x); }.
What is the role of accessor properties in object prototypes?
They can be inherited just like data properties
Allows for shared behavior across objects.
What is an example of using accessor properties for a serial number generator?
It generates strictly increasing serial numbers using a getter and setter
Example: get next() { return this._n++; }.
What does the syntax let p = { [PROPERTY_NAME]: 1 } illustrate?
The use of computed property names in object literals
Allows dynamic property naming.
True or False: The spread operator can spread inherited properties of an object.
False
It only spreads the object’s own properties.
What is the purpose of using Symbols in third-party code?
To add properties without risking name conflicts
Ensures properties remain unchanged by third-party code.
Fill in the blank: In ES6, you can define methods using ______ syntax.
shorthand