Created
September 15, 2019 15:37
-
-
Save djD-REK/9a934c32ac3fde91aadf841d7576197c 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 failedMath = Math.sqrt(-37); | |
console.log(failedMath); // NaN | |
console.log(3 + failedMath); // NaN | |
let failedStringParse = parseInt("Operation Doomsday", 10); | |
console.log(failedStringParse); // NaN | |
console.log(3 * failedStringParse); // NaN |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment