From 578246fecf23c811d36014a4bba28f073a1cc550 Mon Sep 17 00:00:00 2001 From: "J. Andrew Brassington" Date: Wed, 11 Jun 2014 13:49:02 -0700 Subject: [PATCH] Small reword => move 'even' for clarity Looks good so far, thanks for the clear description of JS types --- types & grammar/ch1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types & grammar/ch1.md b/types & grammar/ch1.md index 049ec5ceb..b610474de 100644 --- a/types & grammar/ch1.md +++ b/types & grammar/ch1.md @@ -229,7 +229,7 @@ var b = -1 / 0; // -Infinity As you can see, `-Infinity` results from a divide-by-zero where either (but not both!) of the divide operands is negative. -Contrary to mathematics, because JS uses finite number representations (IEEE-754 foating point, which will be covered later), it *is* possible to overflow (or underflow) with an operation even like addition or subtraction, in which case you'd respectively get `Infinity` or `-Infinity`. +Contrary to mathematics, because JS uses finite number representations (IEEE-754 foating point, which will be covered later), it *is* possible to overflow (or underflow) even with an operation like addition or subtraction, in which case you'd respectively get `Infinity` or `-Infinity`. For example: