Skip to content

Instantly share code, notes, and snippets.

@samme
Created May 31, 2014 20:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samme/41fe4adb2a703d38f63f to your computer and use it in GitHub Desktop.
Save samme/41fe4adb2a703d38f63f to your computer and use it in GitHub Desktop.
Infinity arithmetic
1 / 0
//-> Infinity
-1 / 0
//-> -Infinity
0 / 0
//-> NaN
Infinity === Infinity
//-> true
Infinity * 1
//-> Infinity
Infinity + Infinity
// Infinity
Infinity * Infinity
// Infinity
0 * Infinity
//-> NaN
Infinity - Infinity
// NaN
Infinity / Infinity
// NaN
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment