You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 1-js/07-object-oriented-programming/06-prototype-methods/2-dictionary-tostring/solution.md
+3-1
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
2
2
The method can take all enumerable keys using `Object.keys` and output their list.
3
3
4
-
To make `toString` non-enumerable, let's define it using a property descriptor. The syntax of `Object.create` allows to provide an object with property descriptors as the second argument.
4
+
To make `toString` non-enumerable, let's define it using a property descriptor. The syntax of `Object.create` allows us to provide an object with property descriptors as the second argument.
0 commit comments