JS Built-in Objects Flashcards

1
Q

What is the global object in JavaScript?

A

JavaScript provides a global object which has a set of properties, functions and objects that are accessed globally, without a namespace.

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

List the global properties in JavaScript.

A

Infinity, NaN, undefined

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

List the global functions in JavaScript.

A

decodeURI(), decodeURIComponent(), encodeURI(), encodeURIComponent(), eval(), isFinite(), isNaN(), parseFloat(), parseInt()

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

List the global objects in JavaScript.

A

Array, Boolean, Date, Function, JSON, Math, Number, Object, RegExp, String, Symbol, and errors.

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

What does Infinity represent in JavaScript?

A

Infinity in JavaScript is a value that represents infinity.

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

How do you get negative infinity in JavaScript?

A

To get negative infinity, use the – operator: -Infinity.

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

What values are equivalent to positive and negative infinity?

A

Number.POSITIVE_INFINITY and Number.NEGATIVE_INFINITY

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

What happens when you add any number to Infinity, or multiply Infinity for any number?

A

It still gives Infinity.

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

What does NaN stand for?

A

Not a Number

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

What operations return NaN?

A

Operations such as zero divided by zero, invalid parseInt() operations, or other operations.

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

How do you check if a value evaluates to NaN?

A

You must use the isNaN() global function.

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

How do you check if a variable is undefined?

A

It’s common to use the typeof operator to determine if a variable is undefined.

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

What is the purpose of the decodeURI() function?

A

Performs the opposite operation of encodeURI()

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

What is the purpose of the decodeURIComponent() function?

A

Performs the opposite operation of encodeURIComponent()

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

What is the purpose of the encodeURI() function?

A

This function is used to encode a complete URL.

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

What characters does encodeURI() not encode?

A

It does encode all characters to their HTML entities except the ones that have a special meaning in a URI structure, including all characters and digits, plus those special characters: ~!@#$&*()=:/,;?+-_..

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

What is the purpose of the encodeURIComponent() function?

A

Instead of being used to encode an entire URI, it encodes a portion of a URI.

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

What characters does encodeURIComponent() not encode?

A

It does encode all characters to their HTML entities except the ones that have a special meaning in a URI structure, including all characters and digits, plus those special characters: _.!~*’()

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

What does the eval() function do?

A

This is a special function that takes a string that contains JavaScript code, and evaluates / runs it.

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

Why is the eval() function rarely used?

A

It can be dangerous.

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

What does the isFinite() function return?

A

Returns true if the value passed as parameter is finite.

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

What does the isNaN() function return?

A

Returns true if the value passed as parameter evaluates to NaN.

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

What is the purpose of the parseFloat() function?

A

Like parseInt(), parseFloat() is used to convert a string value into a number, but retains the decimal part.

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

What is the purpose of the parseInt() function?

A

This function is used to convert a string value into a number.

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

What is the second parameter of the parseInt() function?

A

The radix, always 10 for decimal numbers, or the conversion might try to guess the radix and give unexpected results.

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

What does parseInt() return if the string does not start with a number?

A

NaN (Not a Number)

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

What are the three ways to create an object in JavaScript?

A

Object literal syntax (const person = {}), Object global function (const person = Object()), Object constructor (const person = new Object())

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

What is the result of typeof {}?

A

object

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

What are static methods in the Object object?

A

Methods called directly on Object, not on an object instance.

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

What are instance methods in the Object object?

A

Methods called on an object instance.

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

What are the two properties of the Object object?

A

length (always 1) and prototype

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

What does Object.assign() do?

A

Copies all enumerable own properties from one or more objects to a target object (shallow copy).

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

What does Object.create() do?

A

Creates a new object with the specified prototype.

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

What does Object.defineProperties() do?

A

Creates or modifies multiple object properties at once.

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

What does Object.defineProperty() do?

A

Creates or modifies a single object property.

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

What does Object.entries() do?

A

Returns an array of an object’s enumerable property [key, value] pairs.

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

What does Object.freeze() do?

A

Freezes an object, preventing new properties from being added and existing properties from being removed or changed.

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

What does Object.getOwnPropertyDescriptor() do?

A

Returns a property descriptor for a named property on an object.

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

What does Object.getOwnPropertyDescriptors() do?

A

Returns all own property descriptors of an object.

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

What does Object.getOwnPropertyNames() do?

A

Returns an array of all own property names of an object, including non-enumerable properties.

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

What does Object.getOwnPropertySymbols() do?

A

Returns an array of all own Symbol property keys of an object.

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

What does Object.getPrototypeOf() do?

A

Returns the prototype (internal [[Prototype]]) of the specified object.

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

What does Object.is() do?

A

Determines whether two values are the same value.

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

What does Object.isExtensible() do?

A

Determines if an object is extensible (whether it can have new properties added to it).

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

What does Object.isFrozen() do?

A

Determines if an object is frozen.

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

What does Object.isSealed() do?

A

Determines if an object is sealed.

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

What does Object.keys() do?

A

Returns an array of a given object’s own enumerable property names.

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

What does Object.preventExtensions() do?

A

Prevents new properties from ever being added to an object.

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

What does Object.seal() do?

A

Prevents new properties from being added to an object and marks all existing properties as non-configurable.

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

What does Object.setPrototypeOf() do?

A

Sets the prototype (i.e., the internal [[Prototype]] property) of a specified object to a new prototype or null.

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

What does Object.values() do?

A

Returns an array of a given object’s own enumerable property values.

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

What does hasOwnProperty() do?

A

Returns a boolean indicating whether the object has the specified property as its own property (as opposed to inheriting it).

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

What does isPrototypeOf() do?

A

Returns a boolean indicating whether the object specified as the prototype of another object.

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

What does propertyIsEnumerable() do?

A

Returns a boolean indicating whether the specified property is enumerable and is the object’s own property.

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

What does toLocaleString() do?

A

Returns a locale-sensitive string representation of the object.

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

What does toString() do?

A

Returns a string representation of the object.

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

What does valueOf() do?

A

Returns the primitive value of the specified object.

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

What is a property descriptor object?

A

An object that defines a property’s behavior and attributes.

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

What are the properties of a property descriptor object?

A

value, writable, configurable, enumerable, get, set

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

What does the writable property of a descriptor do?

A

Determines if the property’s value can be changed.

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

What does the configurable property of a descriptor do?

A

Determines if the property can be removed or its attributes changed.

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

What does the enumerable property of a descriptor do?

A

Determines if the property appears in enumerations of the object’s properties.

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

What is the difference between Object.freeze() and Object.seal()?

A

Object.freeze() makes properties non-writable and non-configurable, while Object.seal() only prevents adding or removing properties.

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

What is the difference between Object.preventExtensions() and Object.seal()?

A

Object.preventExtensions() prevents adding new properties, while Object.seal() also prevents deleting existing properties.

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

What is the difference between Object.keys() and Object.getOwnPropertyNames()?

A

Object.keys() returns only enumerable property names, while Object.getOwnPropertyNames() returns all property names, including non-enumerable.

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

What is a shallow copy?

A

A copy where primitive values are cloned, but object references are copied (not the objects themselves).

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

How to check if an object is extensible?

A

Using Object.isExtensible()

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

How to check if an object is frozen?

A

Using Object.isFrozen()

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

How to check if an object is sealed?

A

Using Object.isSealed()

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

How do you create a number value using literal syntax?

A

const age = 36

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

How do you create a number value using the Number global function?

A

const age = Number(36)

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

What is the result of using the ‘new’ keyword with the Number function (e.g., new Number(36))?

A

A Number object is created.

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

How do you get the primitive number value from a Number object?

A

Using the valueOf() method.

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

What is Number.EPSILON?

A

The smallest interval between two representable numbers.

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

What is Number.MAX_SAFE_INTEGER?

A

The maximum safe integer value in JavaScript.

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

What is Number.MAX_VALUE?

A

The maximum positive representable value in JavaScript.

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

What is Number.MIN_SAFE_INTEGER?

A

The minimum safe integer value in JavaScript.

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

What is Number.MIN_VALUE?

A

The minimum positive representable value in JavaScript.

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

What is Number.NaN?

A

A special value representing ‘Not-a-Number’.

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

What is Number.NEGATIVE_INFINITY?

A

A special value representing negative infinity.

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

What is Number.POSITIVE_INFINITY?

A

A special value representing positive infinity.

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

What does Number.isNaN(value) do?

A

Returns true if the value is NaN, false otherwise.

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

What does Number.isFinite(value) do?

A

Returns true if the value is a finite number, false otherwise.

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

What does Number.isInteger(value) do?

A

Returns true if the value is an integer, false otherwise.

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

What does Number.isSafeInteger(value) do?

A

Returns true if the value is a safe integer, false otherwise.

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

What does Number.parseFloat(value) do?

A

Parses a string and returns a floating-point number.

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

What does Number.parseInt(value) do?

A

Parses a string and returns an integer.

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

What is a safe integer in JavaScript?

A

An integer that can be represented exactly as an IEEE-754 double-precision number.

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

What does .toExponential() do (instance method)?

A

Returns a string representing the number in exponential notation.

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

What does .toFixed() do (instance method)?

A

Returns a string representing the number in fixed-point notation.

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

What does .toLocaleString() do (instance method)?

A

Returns a string with a language-sensitive representation of the number.

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

What does .toPrecision() do (instance method)?

A

Returns a string representing the number to a specified precision.

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

What does .toString() do (instance method)?

A

Returns a string representation of the number in a specified radix.

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

What does .valueOf() do (instance method)?

A

Returns the primitive number value of a Number object.

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

What value does Number.NaN return for 0 / 0?

A

true

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

What is the default locale for toLocaleString() method?

A

US English

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

What is the default radix for Number.parseInt()?

A

10

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

What is the result of typeof new Number(36)?

A

object

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

What is the result of typeof Number(36)?

A

number

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

What is the static method of the String object used to create a string from Unicode characters?

A

String.fromCodePoint()

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

What does String.fromCodePoint(70, 108, 97, 118, 105, 111) return?

A

‘Flavio’

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

What does charAt(i) do?

A

Returns the character at index i.

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

What does charCodeAt(i) do?

A

Returns the Unicode 16-bit integer representing the character at index i.

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

What does codePointAt(i) do?

A

Returns the Unicode code point value at index i, handling characters outside the BMP.

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

What does concat(str) do?

A

Concatenates the current string with str.

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

What does endsWith(str) do?

A

Checks if a string ends with the value of str.

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

What does includes(str) do?

A

Checks if a string includes the value of str.

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

What does indexOf(str) do?

A

Returns the index of the first occurrence of str, or -1 if not found.

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

What does lastIndexOf(str) do?

A

Returns the index of the last occurrence of str, or -1 if not found.

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

What does localeCompare() do?

A

Compares a string to another according to locale, returning a number indicating their order.

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

What does match(regex) do?

A

Matches a string against a regular expression.

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

What does normalize() do?

A

Returns the string normalized according to a Unicode normalization form.

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

What does padEnd() do?

A

Pads the string with another string until it reaches a specified length, at the end.

114
Q

What does padStart() do?

A

Pads the string with another string until it reaches a specified length, at the beginning.

115
Q

What does repeat() do?

A

Repeats the string a specified number of times.

116
Q

What does replace(str1, str2) do?

A

Replaces the first occurrence of str1 with str2, or all occurrences if using a global regex.

117
Q

What does search(str) do?

A

Returns the index of the first match of str, or -1 if not found.

118
Q

What does slice(begin, end) do?

A

Returns a new string from the portion between begin and end.

119
Q

What does split(separator) do?

A

Splits a string into an array of substrings using the separator.

120
Q

What does startsWith(str) do?

A

Checks if a string starts with the value of str.

121
Q

What does substring(begin, end) do?

A

Returns a portion of a string between begin and end, handling negative indices differently than slice().

122
Q

What does toLocaleLowerCase() do?

A

Returns a new string in lowercase according to locale.

123
Q

What does toLocaleUpperCase() do?

A

Returns a new string in uppercase according to locale.

124
Q

What does toLowerCase() do?

A

Returns a new string in lowercase.

125
Q

What does toString() do?

A

Returns the string representation of the String object.

126
Q

What does toUpperCase() do?

A

Returns a new string in uppercase.

127
Q

What does trim() do?

A

Returns a new string with whitespace removed from both ends.

128
Q

What does trimEnd() do?

A

Returns a new string with whitespace removed from the end.

129
Q

What does trimStart() do?

A

Returns a new string with whitespace removed from the beginning.

130
Q

What is the difference between charCodeAt() and codePointAt()?

A

charCodeAt() returns a 16-bit Unicode unit, while codePointAt() returns the full code point, handling characters outside the BMP.

131
Q

How do you replace all occurrences of a string using replace()?

A

Use a regular expression with the global flag (/g).

132
Q

What happens if charAt() is called with an index that does not exist?

A

An empty string is returned.

133
Q

What does String.fromCodePoint(0x46, 0154, parseInt(141, 8), 118, 105, 111) return?

A

‘Flavio’

134
Q

What is the difference between substring() and slice() when dealing with negative indexes?

A

substring() treats negative indexes as 0, while slice() counts from the end.

135
Q

What is the default normalization form for normalize()?

136
Q

What is the alias of trimEnd()?

A

trimRight()

137
Q

What is the alias of trimStart()?

A

trimLeft()

138
Q

What is Math.E?

A

The base of the natural logarithm (approximately 2.71828).

139
Q

What is Math.LN10?

A

The natural logarithm of 10.

140
Q

What is Math.LN2?

A

The natural logarithm of 2.

141
Q

What is Math.LOG10E?

A

The base 10 logarithm of e.

142
Q

What is Math.LOG2E?

A

The base 2 logarithm of e.

143
Q

What is Math.PI?

A

The mathematical constant π (approximately 3.14159).

144
Q

What is Math.SQRT1_2?

A

The reciprocal of the square root of 2.

145
Q

What is Math.SQRT2?

A

The square root of 2.

146
Q

Are Math object methods static or instance methods?

A

Static methods.

147
Q

What does Math.abs(x) do?

A

Returns the absolute value of x.

148
Q

What does Math.acos(x) do?

A

Returns the arccosine of x (in radians).

149
Q

What does Math.asin(x) do?

A

Returns the arcsine of x (in radians).

150
Q

What does Math.atan(x) do?

A

Returns the arctangent of x (in radians).

151
Q

What does Math.atan2(y, x) do?

A

Returns the arctangent of the quotient of its arguments (y/x).

152
Q

What does Math.ceil(x) do?

A

Rounds x up to the nearest integer.

153
Q

What does Math.cos(x) do?

A

Returns the cosine of x (in radians).

154
Q

What does Math.exp(x) do?

A

Returns e raised to the power of x.

155
Q

What does Math.floor(x) do?

A

Rounds x down to the nearest integer.

156
Q

What does Math.log(x) do?

A

Returns the natural logarithm (base e) of x.

157
Q

What does Math.max(x1, x2, …) do?

A

Returns the largest of zero or more numbers.

158
Q

What does Math.min(x1, x2, …) do?

A

Returns the smallest of zero or more numbers.

159
Q

What does Math.pow(x, y) do?

A

Returns x raised to the power of y.

160
Q

What does Math.random() do?

A

Returns a pseudorandom number between 0 and 1.

161
Q

What does Math.round(x) do?

A

Returns the value of x rounded to the nearest integer.

162
Q

What does Math.sin(x) do?

A

Returns the sine of x (in radians).

163
Q

What does Math.sqrt(x) do?

A

Returns the square root of x.

164
Q

What does Math.tan(x) do?

A

Returns the tangent of x (in radians).

165
Q

What is the range of values accepted by Math.acos() and Math.asin()?

166
Q

What is the return unit of trigonometric functions like Math.cos(), Math.sin(), Math.tan(), Math.acos(), Math.asin(), and Math.atan()?

167
Q

What kind of number does Math.random() return?

A

A pseudorandom floating-point number between 0 (inclusive) and 1 (exclusive).

168
Q

What is JSON?

A

A file format used to store and interchange data in key-value pairs.

169
Q

Is JSON human-readable?

170
Q

How are keys represented in JSON?

A

Wrapped in double quotes.

171
Q

What separates a key and its value in JSON?

A

A colon (:).

172
Q

What separates key-value pairs in JSON?

A

A comma (,).

173
Q

Does spacing matter in a JSON file?

174
Q

In what year was JSON born?

175
Q

What is the MIME type for JSON files?

A

application/json.

176
Q

What are the basic data types supported by JSON?

A

Number, String, Boolean, Array, Object, null.

177
Q

How are strings represented in JSON?

A

Wrapped in double quotes.

178
Q

How are arrays represented in JSON?

A

Wrapped in square brackets ([]).

179
Q

How are objects represented in JSON?

A

Wrapped in curly brackets ({}).

180
Q

What does the null keyword represent in JSON?

A

An empty value.

181
Q

What JavaScript object provides methods for encoding and decoding JSON?

A

The JSON object.

182
Q

What method is used to parse a JSON string into a JavaScript object?

A

JSON.parse().

183
Q

What method is used to convert a JavaScript object into a JSON string?

A

JSON.stringify().

184
Q

What is the purpose of the optional second argument in JSON.parse()?

A

It’s a reviver function used to perform custom operations during parsing.

185
Q

How can you represent nested objects in JSON?

A

By including objects within other objects or arrays.

186
Q

How are boolean values represented in JSON?

A

true or false (lowercase).

187
Q

How are numbers represented in JSON?

A

Without quotes.

188
Q

What standard defines JSON?

189
Q

What file extension is commonly used for JSON files?

190
Q

How do you initialize a Date object representing the current time?

A

new Date()

191
Q

What unit of time does the Date object use internally?

A

Milliseconds since January 1, 1970 (UTC).

192
Q

How do you create a Date object from a UNIX timestamp?

A

new Date(timestamp * 1000)

193
Q

What does new Date(0) represent?

A

January 1, 1970 00:00:00 UTC.

194
Q

How does the Date object handle strings passed to its constructor?

A

It uses the parse method.

195
Q

What does Date.parse(‘2018-07-22’) return?

A

A timestamp (milliseconds).

196
Q

How do you create a Date object using year, month, and day parameters?

A

new Date(year, month, day)

197
Q

What is the minimum number of parameters for a Date constructor with year, month, etc.?

A

3 (year, month, day)

198
Q

How are months numbered in the Date object?

A

Starting from 0 (January is 0).

199
Q

How do you specify a timezone when initializing a Date object?

A

By adding ‘+HOURS’ or ‘(Timezone Name)’ to the date string.

200
Q

What happens if you specify a wrong timezone name?

A

JavaScript defaults to UTC without error.

201
Q

What does Date.now() return?

A

The current timestamp in milliseconds.

202
Q

What does Date.UTC(2018, 6, 22) return?

A

A timestamp in milliseconds representing July 22, 2018 UTC.

203
Q

What does date.toString() return?

A

A string representation of the date and time.

204
Q

What does date.toUTCString() return?

A

A string representation of the date and time in UTC.

205
Q

What does date.toISOString() return?

A

A string representation of the date and time in ISO 8601 format.

206
Q

What does date.getTime() return?

A

The timestamp in milliseconds.

207
Q

What does date.getDate() return?

A

The day of the month.

208
Q

What does date.getDay() return?

A

The day of the week (0-6, Sunday is 0).

209
Q

What does date.getFullYear() return?

A

The full year.

210
Q

What does date.getMonth() return?

A

The month (0-11).

211
Q

What does date.getHours() return?

A

The hours.

212
Q

What does date.getMinutes() return?

A

The minutes.

213
Q

What does date.getSeconds() return?

A

The seconds.

214
Q

What does date.getMilliseconds() return?

A

The milliseconds.

215
Q

What does date.getTimezoneOffset() return?

A

The timezone difference in minutes.

216
Q

What is the difference between get* and getUTC* methods?

A

get* methods return values based on the local timezone, getUTC* methods return UTC values.

217
Q

What methods are used to edit a Date object?

A

setDate(), setFullYear(), setMonth(), setHours(), setMinutes(), setSeconds(), setMilliseconds(), setTime()

218
Q

What is the deprecated method to set the year?

219
Q

How do you get the timestamp in seconds from Date.now()?

A

Math.floor(Date.now() / 1000)

220
Q

What is the unary operator that can be used to get the timestamp?

221
Q

What happens if you overflow a month with the days count?

A

The date will go to the next month.

222
Q

What object is used to format dates according to the locale?

A

Intl.DateTimeFormat()

223
Q

How do you compare two dates?

A

By comparing their getTime() values.

224
Q

How do you check if two dates are equal?

A

By comparing their getTime() values.

225
Q

How do you determine if a Date object represents today?

A

By comparing getDate(), getMonth(), and getFullYear() with today’s date.

226
Q

What are the four ways to create a new Date object?

A

No parameters (now), number (milliseconds), string (date), parameters (parts of date).

227
Q

What does date.toLocaleTimeString() return?

A

A string with a language-sensitive representation of the time portion of this date.

228
Q

What does date.toLocaleString() return?

A

A string with a language-sensitive representation of this date.

229
Q

What is the Intl object in JavaScript?

A

A built-in object that provides language-sensitive string comparison, number formatting, date and time formatting, and more.

230
Q

What properties does the Intl object expose?

A

Intl.Collator, Intl.DateTimeFormat, Intl.NumberFormat, Intl.PluralRules, Intl.RelativeTimeFormat.

231
Q

What method does the Intl object provide?

A

Intl.getCanonicalLocales().

232
Q

What does Intl.getCanonicalLocales() do?

A

Checks if a locale is valid and returns the correctly formatted locale.

233
Q

What happens if Intl.getCanonicalLocales() is passed an invalid locale?

A

It throws a RangeError.

234
Q

How can you handle an invalid locale error?

A

Using a try/catch block.

235
Q

Which String prototype method interfaces with the Intl API?

A

String.prototype.localeCompare().

236
Q

Which Number prototype method interfaces with the Intl API?

A

Number.prototype.toLocaleString().

237
Q

Which Date prototype methods interface with the Intl API?

A

Date.prototype.toLocaleString(), Date.prototype.toLocaleDateString(), Date.prototype.toLocaleTimeString().

238
Q

What does Intl.Collator provide?

A

Language-sensitive string comparison.

239
Q

How do you initialize a Collator object?

A

new Intl.Collator(locale).

240
Q

What method is used to compare strings with a Collator object?

A

compare().

241
Q

What does the compare() method return?

A

A positive, negative, or zero value indicating the order of the strings.

242
Q

What does Intl.DateTimeFormat provide?

A

Language-sensitive date and time formatting.

243
Q

How do you initialize a DateTimeFormat object?

A

new Intl.DateTimeFormat(locale).

244
Q

What method is used to format a date with a DateTimeFormat object?

245
Q

What does the formatToParts() method return?

A

An array with all the date parts.

246
Q

What does Intl.NumberFormat provide?

A

Language-sensitive number formatting, including currency.

247
Q

How do you initialize a NumberFormat object for currency?

A

new Intl.NumberFormat(locale, { style: ‘currency’, currency: ‘XXX’ }).

248
Q

What property is used to set the minimum number of fraction digits in NumberFormat?

A

minimumFractionDigits.

249
Q

What does Intl.PluralRules provide?

A

Language-sensitive plural formatting and plural language rules.

250
Q

How do you initialize a PluralRules object?

A

new Intl.PluralRules(locale, { type: ‘ordinal’ }).

251
Q

What method is used to select the plural form with a PluralRules object?

252
Q

What are some practical usages of Intl.PluralRules?

A

Giving a suffix to ordered numbers (e.g., 1st, 2nd, 3rd).

253
Q

What is the use of Intl.RelativeTimeFormat?

A

“provides language-sensitive relative time formatting”

254
Q

What is a Set in JavaScript?

A

A collection of unique values.

255
Q

How do you initialize a Set?

256
Q

How do you add an item to a Set?

A

set.add(value)

257
Q

Does a Set allow duplicate values?

258
Q

How do you check if a Set contains an item?

A

set.has(value)

259
Q

How do you delete an item from a Set?

A

set.delete(value)

260
Q

How do you find the number of items in a Set?

261
Q

How do you delete all items from a Set?

A

set.clear()

262
Q

How do you iterate over the items in a Set?

A

Using set.keys(), set.values(), set.entries(), set.forEach(), or a for…of loop.

263
Q

How do you initialize a Set with values?

A

new Set([value1, value2, …])

264
Q

How do you convert a Set to an array?

A

[…set.keys()] or […set.values()]

265
Q

What is a Map in JavaScript?

A

A collection of key-value pairs.

266
Q

How do you initialize a Map?

267
Q

How do you add an item to a Map?

A

map.set(key, value)

268
Q

How do you get an item from a Map?

A

map.get(key)

269
Q

Does a Map allow duplicate keys?

270
Q

Does a Map allow duplicate values?

271
Q

How do you delete an item from a Map?

A

map.delete(key)

272
Q

How do you delete all items from a Map?

A

map.clear()

273
Q

How do you check if a Map contains an item by key?

A

map.has(key)

274
Q

How do you find the number of items in a Map?

275
Q

How do you initialize a Map with values?

A

new Map([[key1, value1], [key2, value2], …])

276
Q

Can objects be used as keys in a Map?

277
Q

What does map.get(nonExistentKey) return?

278
Q

How do you iterate over the keys of a Map?

A

Using map.keys() and a for…of loop.

279
Q

How do you iterate over the values of a Map?

A

Using map.values() and a for…of loop.

280
Q

How do you iterate over the key-value pairs of a Map?

A

Using map.entries() or map directly in a for…of loop.

281
Q

How do you convert the keys of a Map to an array?

A

[…map.keys()]

282
Q

How do you convert the values of a Map to an array?

A

[…map.values()]