fix(learn): lack of block code declaration (#47506)

Fix lack of block code declaration
This commit is contained in:
Maciej Bąba
2022-09-13 00:46:20 +02:00
committed by GitHub
parent cd53a61202
commit 533c0345e4

View File

@@ -15,7 +15,7 @@ If the values being compared are not of the same type, the equality operator wil
**Examples**
`3 == '3'` returns `true` because JavaScript performs type conversion from string to number. `3 === '3'` returns false because the types are different and type conversion is not performed.
`3 == '3'` returns `true` because JavaScript performs type conversion from string to number. `3 === '3'` returns `false` because the types are different and type conversion is not performed.
**Note:** In JavaScript, you can determine the type of a variable or a value with the `typeof` operator, as follows: