Created
July 6, 2019 19:39
-
-
Save AleksandrChukhray/a7e74bf4ee2bfdcd76ebc6364c7593ec to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const k = Object.create(Object.prototype); // => {} with Object.prototype | |
| const l = Object.create(null) // without prototype | |
| const m = new Object(); // => {} with Object.prototype | |
| const f = {} // => {} with Object.prototype |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment