Skip to content

Instantly share code, notes, and snippets.

@djD-REK
Created September 15, 2019 15:37
Show Gist options
  • Save djD-REK/9a934c32ac3fde91aadf841d7576197c to your computer and use it in GitHub Desktop.
Save djD-REK/9a934c32ac3fde91aadf841d7576197c to your computer and use it in GitHub Desktop.
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