From ae5d0e87e6989bd6d7653c2b508248c9193731e9 Mon Sep 17 00:00:00 2001 From: Roenz Aberin <42616880+raberin@users.noreply.github.com> Date: Sun, 16 Dec 2018 19:20:31 -0800 Subject: [PATCH] Added an "a" on line 56 (#29198) --- guide/english/javascript/booleans/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/javascript/booleans/index.md b/guide/english/javascript/booleans/index.md index 0afeaec08e..7947cab22b 100644 --- a/guide/english/javascript/booleans/index.md +++ b/guide/english/javascript/booleans/index.md @@ -53,7 +53,7 @@ The *and* operator works in a similar way, but for 'and' to be true, both operan ## The Boolean Object -There is also a native JavaScript object that wraps around a value. The value passed as the first parameter is converted to a boolean value, if necessary. If value is omitted, 0, -0, null, false, NaN, undefined, or the empty string (""), the object has an initial value of false. All other values, including any object or the string "false", create an object with an initial value of true. +There is also a native JavaScript object that wraps around a value. The value passed as the first parameter is converted to a boolean value, if necessary. If a value is omitted, 0, -0, null, false, NaN, undefined, or the empty string (""), the object has an initial value of false. All other values, including any object or the string "false", create an object with an initial value of true. Do not confuse the primitive Boolean values true and false with the true and false values of the Boolean object.