1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-07-31 12:00:34 +02:00

remove extra whitespace, explain NaN

This commit is contained in:
Gabriel Halley
2015-10-07 22:22:12 -04:00
parent 5c677e8071
commit a793d16e37

View File

@@ -64,7 +64,7 @@ doStuff()
// There are three special not-a-real-number values:
Infinity; // result of e.g. 1/0
-Infinity; // result of e.g. -1/0
NaN; // result of e.g. 0/0
NaN; // result of e.g. 0/0, stands for 'Not a Number'
// There's also a boolean type.
true;