Created
August 30, 2017 01:55
-
-
Save esprehn/7d013676691f91262a22547e8b942cc2 to your computer and use it in GitHub Desktop.
spreading the woes
This file contains 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
[...null] | |
// VM2014:1 Uncaught TypeError: Cannot read property 'Symbol(Symbol.iterator)' of null | |
// at <anonymous>:1:5 | |
[...undefined] | |
// VM2026:1 Uncaught TypeError: Cannot read property 'Symbol(Symbol.iterator)' of undefined | |
// at <anonymous>:1:5 | |
{...undefined} | |
// {} | |
{...null} | |
// {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment