Skip to content

Commit 9204d08

Browse files
authored
Link errors
1 parent aeabf4b commit 9204d08

File tree

1 file changed

+2
-2
lines changed
  • 1-js/07-object-oriented-programming/06-prototype-methods

1 file changed

+2
-2
lines changed

1-js/07-object-oriented-programming/06-prototype-methods/article.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ In this chapter we cover additional methods to work with a prototype.
66
There are also other ways to get/set a prototype, besides those that we already know:
77

88
- [Object.create(proto[, descriptors])](mdn:js/Object/create) -- creates an empty object with given `proto` as `[[Prototype]]` and optional property descriptors.
9-
- [Object.getPrototypeOf(obj)](mdn:js/Object.getPrototypeOf) -- returns the `[[Prototype]]` of `obj`.
10-
- [Object.setPrototypeOf(obj, proto)](mdn:js/Object.setPrototypeOf) -- sets the `[[Prototype]]` of `obj` to `proto`.
9+
- [Object.getPrototypeOf(obj)](mdn:js/Object/getPrototypeOf) -- returns the `[[Prototype]]` of `obj`.
10+
- [Object.setPrototypeOf(obj, proto)](mdn:js/Object/setPrototypeOf) -- sets the `[[Prototype]]` of `obj` to `proto`.
1111

1212
[cut]
1313

0 commit comments

Comments
 (0)