diff --git a/guide/english/javascript/booleans/index.md b/guide/english/javascript/booleans/index.md index 7947cab22ba..45932f5aa80 100644 --- a/guide/english/javascript/booleans/index.md +++ b/guide/english/javascript/booleans/index.md @@ -4,7 +4,7 @@ title: Boolean ## Boolean -Booleans are a primitive data type commonly used in computer programming languages. By definition, a boolean has two possible values: `true` or `false`. +Boolean is a primitive data type commonly used in computer programming languages. By definition, a boolean has two possible values: `true` or `false`. In Javascript, there is often implicit type coercion to boolean. If, for example, you have an if statement which checks a certain expression, that expression will be coerced to a boolean: