Created
January 9, 2019 00:28
-
-
Save robertcoopercode/ae5c31f69b76261b5780073ae6247295 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
let list = [10, 22, 4, null, 5]; | |
list.push(6); // ✅ | |
list.push(null); // ✅ | |
list.push('nope'); // ❌ - type 'string' is neither of type 'number' or 'null' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment