Skip to content

Commit 076a0dd

Browse files
authored
Update article.md
1 parent b7e611d commit 076a0dd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

1-js/02-first-steps/09-comparison/article.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ From JavaScript's standpoint, this result is quite normal. An equality check con
114114

115115
## Катуу салыштыруу
116116

117-
Кадимки салыштыруу операторунун `==` көйгөйү бар. Ал `0` менен `false` маанилерин айырмалай албайт:
117+
Кадимки салыштыруу `==` операторунун көйгөйү бар. Ал `0` менен `false` маанилерин айырмалай албайт:
118118

119119
```js run
120120
alert( 0 == false ); // true
@@ -209,7 +209,7 @@ Why did we go over these examples? Should we remember these peculiarities all th
209209

210210
## Корутунду
211211

212-
- Comparison operators return a boolean value.
212+
- Салыштыруу операторлору логикалык маанини кайтарат.
213213
- Strings are compared letter-by-letter in the "dictionary" order.
214214
- When values of different types are compared, they get converted to numbers (with the exclusion of a strict equality check).
215215
- The values `null` and `undefined` equal `==` each other and do not equal any other value.

0 commit comments

Comments
 (0)