mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-05 12:06:36 -05:00
fix(learn): lack of block code declaration (#47506)
Fix lack of block code declaration
This commit is contained in:
@@ -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:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user