diff --git a/client/src/pages/guide/english/javascript/booleans/index.md b/client/src/pages/guide/english/javascript/booleans/index.md index 2face334c3..2840449ef6 100644 --- a/client/src/pages/guide/english/javascript/booleans/index.md +++ b/client/src/pages/guide/english/javascript/booleans/index.md @@ -21,7 +21,7 @@ There are only a few values that will be coerced to false: - undefined - NaN - 0 -- '' (empty string) +- '' or "" (empty string) All other values will be coerced to true. When a value is coerced to a boolean, we also call that either 'falsy' or 'truthy'.