Objects Flashcards

1
Q

What is an object ?

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are the other common names of “string-to-value” mapping structures in other programming languages ?

A

hash, hashtable, dictionary, associative array

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What makes a javascript object something more than a simple “string-to-value” map ?

A

A javascript object also inherits the properties of another object, known as its “prototype”.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are types possible for the property names of an object

A

String (most common one) and Symbol.
The other types are converted to String.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What are the possible values of a javascript object property ?

A

Any javascript value, or a getter or setter function (or both)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is a prototype ?

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What property of the constructor function is used as the prototype for objects created with the new keyword?

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

True or False: Objects created using the new keyword do not inherit from the constructor’s prototype.

A

False

Objects created with the new keyword inherit from the prototype of the constructor function.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What happens to the prototype of an object created using a constructor function?

A

It uses the value of the prototype property of the constructor function

This establishes a prototype chain for the newly created object.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is unique about Object.prototype?

A

It has no prototype and does not inherit any properties.

This makes Object.prototype a rare object in JavaScript.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Do most built-in constructors inherit from Object.prototype?

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is the term for the linked series of prototype objects?

A

Prototype chain.

This chain allows objects to inherit properties from one another in JavaScript.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

True or False: Object.prototype inherits properties from another object.

A

False.

Object.prototype is the base object and does not have a prototype.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Fill in the blank: Most user-defined constructors have a prototype that inherits from __________.

A

Object.prototype.

This is a fundamental aspect of JavaScript’s prototypal inheritance.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What does Object.create() do?

A

Creates a new object, using its first argument as the prototype of that object

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What properties does o1 inherit in the example let o1 = Object.create({x: 1, y: 2})?

A

x and y

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

What happens when you pass null to Object.create()?

A

Creates a new object that does not have a prototype, inheriting no properties or methods

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

What is the effect of creating an object with let o2 = Object.create(null)?

A

o2 inherits no properties or methods

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

How do you create an ordinary empty object using Object.create()?

A

Pass Object.prototype as the argument

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

What is the example code for creating an ordinary empty object with Object.create()?

A

let o3 = Object.create(Object.prototype)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

What does the second argument of Object.create() do?

A

Describes the properties of the new object (advanced feature)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

What is one use case for Object.create() mentioned in the text?

A

Guard against unintended modifications of an object by a library function

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
23
Q

What is the purpose of passing Object.create(o) to a library function?

A

To prevent accidental modifications to the original object

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
24
Q

What will happen if the library function sets properties on the object created by Object.create(o)?

A

Those writes will not affect the original object

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
25
Q

True or False: If you create an object with Object.create(null), it can still use basic methods like toString().

A

False

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
26
Q

What must the expression inside the square brackets evaluate to?

A

A string or a value that can be converted to a string or to a Symbol

This is specified in §6.10.3.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
27
Q

Fill in the blank: The expression inside the square brackets must evaluate to a _______.

A

string or a value that can be converted to a string or to a Symbol

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
28
Q

True or False: The square bracket notation is only applicable to strings.

A

False

It can also apply to values that can be converted to a string or to a Symbol.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
29
Q

How do JavaScript objects inherit properties?

A

From their prototype object through the prototype chain

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
30
Q

When querying a property, what happens if the object does not have that property?

A

The prototype object is queried for the property

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
31
Q

What is the prototype chain?

A

A linked list of objects from which properties are inherited

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
32
Q

What happens when you assign a value to an existing own property?

A

The value of the existing property is changed

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
33
Q

What occurs when you assign a value to a property that does not exist on the object?

A

A new property is created on the object

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
34
Q

What is hidden when a new own property is created with the same name as an inherited property?

A

The inherited property is hidden

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
35
Q

How does property assignment work in relation to the prototype chain?

A

It examines the prototype chain only to determine if the assignment is allowed

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
36
Q

What happens if a property is inherited and is read-only?

A

The assignment is not allowed

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
37
Q

What is the effect of property assignment on the prototype chain?

A

It never modifies objects in the prototype chain

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
38
Q

What is a key feature of JavaScript regarding property inheritance?

A

Inheritance occurs when querying properties but not when setting them

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
39
Q

What happens when an object overrides an inherited property?

A

The inherited property remains unchanged in the prototype

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
40
Q

What is an accessor property in JavaScript?

A

A property that has a getter and/or setter method

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
41
Q

True or False: Property assignments in JavaScript modify the prototype chain.

A

False

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
42
Q

What happens when you delete a property that does not exist?

A

The delete expression evaluates to true.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
43
Q

Can the delete operator remove inherited properties?

A

No, it only deletes own properties.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
44
Q

How can you delete an inherited property?

A

Delete it from the prototype object.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
45
Q

What is the result of deleting a non-configurable property in strict mode?

A

Causes a TypeError.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
46
Q

What will the delete operator return when used on a non-configurable property in non-strict mode?

A

Evaluates to false.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
47
Q

What is the result of the expression ‘delete Object.prototype’?

A

Evaluates to false: property is non-configurable.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
48
Q

Can you delete a global variable created by variable declaration?

A

No, it cannot be deleted.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
49
Q

What happens in strict mode if you try to delete an unqualified identifier like x?

A

Raises a SyntaxError.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
50
Q

Fill in the blank: The delete operator only deletes ______ properties.

A

own

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
51
Q

True or False: The delete operator can remove properties with a configurable attribute of true.

A

True.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
52
Q

What happens when you delete a property that has already been deleted?

A

Evaluates to true.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
53
Q

What is the purpose of enumerating properties in JavaScript?

A

To iterate through or obtain a list of all the properties of an object.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
54
Q

Which loop is commonly used to enumerate properties of an object?

A

for/in loop

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
55
Q

What does the for/in loop assign to the loop variable?

A

The name of the property

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
56
Q

Are built-in methods that objects inherit enumerable?

A

No, they are not enumerable.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
57
Q

Give an example of an object with enumerable properties.

A

let o = {x: 1, y: 2, z: 3};

58
Q

What will o.propertyIsEnumerable(‘toString’) return?

59
Q

How can you skip inherited properties in a for/in loop?

A

By checking with o.hasOwnProperty(p)

60
Q

What can you use to get an array of property names from an object?

A

Object.keys(), Object.getOwnPropertyNames(), Object.getOwnPropertySymbols(), Reflect.ownKeys()

61
Q

What does Object.keys() return?

A

An array of the names of the enumerable own properties of an object.

62
Q

What does Object.getOwnPropertyNames() return?

A

An array of the names of non-enumerable own properties as well.

63
Q

What does Object.getOwnPropertySymbols() return?

A

Own properties whose names are Symbols.

64
Q

What does Reflect.ownKeys() return?

A

All own property names, both enumerable and non-enumerable, and both string and Symbol.

65
Q

What is the order of property enumeration defined by ES6?

A

String properties named with non-negative integers first, then remaining string properties, and finally Symbol properties.

66
Q

In what order are string properties with non-negative integers listed?

A

In numeric order from smallest to largest.

67
Q

How are properties that look like array indexes enumerated?

A

They are listed first in numeric order.

68
Q

How are remaining string properties listed?

A

In the order they were added to the object.

69
Q

What is the enumeration order for Symbol properties?

A

In the order in which they were added to the object.

70
Q

Is the enumeration order for the for/in loop tightly specified?

A

No, it is not as tightly specified.

71
Q

What happens if a property by the same name has already been enumerated?

A

It will not be enumerated again.

72
Q

What is the ES6 method used for copying properties from one object to another?

A

Object.assign()

73
Q

What does Object.assign() modify and return?

A

The first argument, which is the target object

74
Q

Does Object.assign() alter the source objects?

A

No, it does not alter the source objects

75
Q

What types of properties does Object.assign() copy to the target object?

A

Enumerable own properties of the source object, including Symbol properties

76
Q

How does Object.assign() handle properties with the same name?

A

Properties in the first source object override properties in the target object

77
Q

What happens if a source object has a getter method during the copy process?

A

The getter method is invoked, but it is not copied

78
Q

What is one reason to copy properties from one object to another?

A

To copy default values into another object if a property does not already exist

79
Q

What is the potential issue with using Object.assign() for copying defaults?

A

It overwrites everything in the target object with defaults

80
Q

How can you avoid overwriting existing properties when copying defaults?

A

Create a new object and copy defaults into it, then override with properties in the target object

81
Q

How can you express the object copy-and-override operation using the spread operator?

A

o = {…defaults, …o}

82
Q

What does the merge() function do differently than Object.assign()?

A

It only copies properties if they are missing in the target object

83
Q

What is an example of using Object.assign() with properties?

A

Object.assign({x: 1}, {x: 2, y: 2}, {y: 3, z: 4}) // => {x: 2, y: 3, z: 4}

84
Q

What could a subtract() function do?

A

Remove all of the properties of one object from another object

85
Q

What is object serialization?

A

The process of converting an object’s state to a string from which it can later be restored.

86
Q

Which functions are used to serialize and restore JavaScript objects?

A

JSON.stringify() and JSON.parse()

87
Q

What does JSON stand for?

A

JavaScript Object Notation

88
Q

How is JSON syntax related to JavaScript syntax?

A

JSON syntax is a subset of JavaScript syntax.

89
Q

What types of values can be serialized and restored using JSON?

A
  • Objects
  • Arrays
  • Strings
  • Finite numbers
  • true
  • false
  • null
90
Q

What happens to NaN, Infinity, and -Infinity during serialization?

A

They are serialized to null.

91
Q

How are Date objects serialized in JSON?

A

They are serialized to ISO-formatted date strings.

92
Q

What happens to Date objects when using JSON.parse()?

A

They remain in string form and do not restore the original Date object.

93
Q

Can Function, RegExp, and Error objects be serialized or restored?

A

No, they cannot be serialized or restored.

94
Q

What happens to the undefined value during serialization?

A

It cannot be serialized or restored.

95
Q

What does JSON.stringify() serialize?

A

Only the enumerable own properties of an object.

96
Q

What happens if a property value cannot be serialized?

A

That property is simply omitted from the stringified output.

97
Q

What optional arguments can JSON.stringify() and JSON.parse() accept?

A

They can accept arguments to customize the serialization and/or restoration process.

98
Q

Fill in the blank: JSON.stringify() and JSON.parse() can convert certain values during the _______.

A

[serialization or stringification process]

99
Q

True or False: JSON can represent all JavaScript values.

100
Q

What is the purpose of the Date.toJSON() function?

A

To serialize Date objects to ISO-formatted date strings.

101
Q

What type of properties do objects inherit from Object.prototype?

102
Q

What is the purpose of the toString() method?

A

Returns a string that represents the value of the object

103
Q

What does the default toString() method return for an object?

A

[object Object]

104
Q

How can you define a custom toString() method for an object?

A

By creating a function that returns a string representation of the object

105
Q

What is the purpose of the toLocaleString() method?

A

Returns a localized string representation of the object

106
Q

What does the default toLocaleString() method do?

A

Calls toString() and returns that value

107
Q

Which classes define customized versions of toLocaleString()?

A

Date and Number classes

108
Q

How does Array’s toLocaleString() method differ from its toString() method?

A

Formats array elements by calling their toLocaleString() methods

109
Q

What is the valueOf() method used for?

A

Converts an object to a primitive type, typically a number

110
Q

When is the valueOf() method called automatically?

A

When an object is used in a context requiring a primitive value

111
Q

What does the Date class’s valueOf() method do?

A

Converts dates to numbers for chronological comparison

112
Q

What does the toJSON() method do?

A

Called by JSON.stringify() to serialize an object

113
Q

What happens if a toJSON() method exists on an object during serialization?

A

It is invoked, and its return value is serialized

114
Q

What does the point object’s toJSON() method return in the given example?

A

The string representation of the point

115
Q

Fill in the blank: The _______ method is used for conversions to numbers.

116
Q

True or False: The toString() method takes arguments.

117
Q

What does the expression Number(point) evaluate to if point’s valueOf() returns the distance from the origin?

A

The calculated distance

118
Q

What will point.toLocaleString() return if the point object is defined with localized formatting?

A

A string representation with localized number formatting

119
Q

What is the ES6 shorthand properties syntax?

A

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 }.

120
Q

What are computed property names in ES6?

A

Property names that are defined using expressions enclosed in square brackets

Example: let o = { [PROPERTY_NAME]: 1 }.

121
Q

What are Symbols in JavaScript?

A

Unique and immutable primitive values used as property names

Symbols are created using the Symbol() function.

122
Q

What is the spread operator in ES2018?

A

A syntax that allows copying properties from one object to another using …

Example: let rect = { …position, …dimensions }.

123
Q

How do you define a method in an object literal in ES6?

A

Using shorthand syntax by omitting the function keyword and colon

Example: let square = { area() { return this.side * this.side; } }.

124
Q

What are accessor properties in JavaScript?

A

Properties that use getter and/or setter methods instead of a single value

Example: get accessorProp() { return this.dataProp; }.

125
Q

What is the purpose of a getter method?

A

To return the value of a property when it is accessed

Example: get r() { return Math.hypot(this.x, this.y); }.

126
Q

What is the purpose of a setter method?

A

To set the value of a property when it is assigned

Example: set r(newvalue) { this.dataProp = newvalue; }.

127
Q

What happens if both getter and setter methods are defined for a property?

A

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.

128
Q

What is the result of using the spread operator with objects that have the same property names?

A

The last property value will override the previous one

Example: let p = { x: 0, …o }; p.x will take the value from o.

129
Q

True or False: Symbols can be used to create non-conflicting property names.

A

True

Each Symbol is unique, making them ideal for property names.

130
Q

Fill in the blank: Accessor properties can be defined with an extension to the object literal syntax using ______ and ______.

A

get and set

131
Q

What is the significance of the this keyword in getter and setter methods?

A

It refers to the object on which the methods are defined

Allows access to other properties of the same object.

132
Q

What type of properties can be created using Symbols?

A

Unique property names that do not conflict with other properties

Example: let o = { [symbol]: value }.

133
Q

What does the spread operator do in terms of performance?

A

It can represent an O(n) operation, impacting performance with large objects

Using … in a loop could lead to inefficient algorithms.

134
Q

What does a read-only accessor property do?

A

Only has a getter method and cannot be written to

Example: get theta() { return Math.atan2(this.y, this.x); }.

135
Q

What is the role of accessor properties in object prototypes?

A

They can be inherited just like data properties

Allows for shared behavior across objects.

136
Q

What is an example of using accessor properties for a serial number generator?

A

It generates strictly increasing serial numbers using a getter and setter

Example: get next() { return this._n++; }.

137
Q

What does the syntax let p = { [PROPERTY_NAME]: 1 } illustrate?

A

The use of computed property names in object literals

Allows dynamic property naming.

138
Q

True or False: The spread operator can spread inherited properties of an object.

A

False

It only spreads the object’s own properties.

139
Q

What is the purpose of using Symbols in third-party code?

A

To add properties without risking name conflicts

Ensures properties remain unchanged by third-party code.

140
Q

Fill in the blank: In ES6, you can define methods using ______ syntax.