minor fixes

This commit is contained in:
Ilya Kantor 2020-06-08 10:59:06 +03:00
parent cea9d8c9c2
commit 30c9c32cd7

View file

@ -57,7 +57,6 @@ The descriptors are in the same format as described in the chapter <info:propert
We can use `Object.create` to perform an object cloning more powerful than copying properties in `for..in`:
```js
// fully identical shallow clone of obj
let clone = Object.create(Object.getPrototypeOf(obj), Object.getOwnPropertyDescriptors(obj));
```