Last active
February 21, 2022 22:52
-
-
Save blarfoon/a743abc85ca9616d4490c6722c71b8c5 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 myObject = {}; | |
console.log(myObject.toString()) | |
// in this case it's the same as calling | |
console.log(Object.getPrototypeOf(myObject).toString()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment