fixed typo "datetype" to "data type" (#27384)

pull/30416/head^2
ALucatero03 2018-12-16 21:18:50 -06:00 committed by Randell Dawson
parent b9d8bf9697
commit 2b03647e1e
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ title: Boolean
## Boolean
Booleans are a primitive datatype commonly used in computer programming languages. By definition, a boolean has two possible values: `true` or `false`.
Booleans are 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: