Adding two commas to sentence (#20077)

This commit is contained in:
meanmegajean
2018-10-27 10:38:38 -06:00
committed by Christopher McCormack
parent c90ec7819d
commit e075b7daba

View File

@ -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';