Skip to content

Commit de7bc2b

Browse files
committed
minor
1 parent df6127a commit de7bc2b

File tree

1 file changed

+1
-1
lines changed
  • 1-js/6-objects-more/2-object-conversion/4-object-types-conversion-questions

1 file changed

+1
-1
lines changed

1-js/6-objects-more/2-object-conversion/4-object-types-conversion-questions/solution.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
```js no-beautify
44
new Date(0) - 0 = 0 // (1)
55
new Array(1)[0] + "" = "undefined" // (2)
6-
({})[0] = undefined // (3)
6+
({})[0] = undefined // (3)
77
[1] + 1 = "11" // (4)
88
[1,2] + [3,4] = "1,23,4" // (5)
99
[] + null + 1 = "null1" // (6)

0 commit comments

Comments
 (0)