diff --git a/guide/english/javascript/booleans/index.md b/guide/english/javascript/booleans/index.md index 2840449ef6..c97889f2be 100644 --- a/guide/english/javascript/booleans/index.md +++ b/guide/english/javascript/booleans/index.md @@ -6,7 +6,7 @@ title: Boolean Booleans are a primitive datatype 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: +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: ```javascript var a = 'a string';