Skip to content

Commit 4cf3a32

Browse files
author
Md. Jamal Uddin
authored
Merge pull request #25 from akib22/master
Comparisons
2 parents bc87c27 + 6e360e4 commit 4cf3a32

File tree

3 files changed

+111
-112
lines changed

3 files changed

+111
-112
lines changed

Diff for: 1-js/02-first-steps/08-comparison/1-comparison-questions/solution.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ null == "\n0\n" → false
1010
null === +"\n0\n"false
1111
```
1212

13-
Some of the reasons:
13+
কিছু কারণ:
1414

15-
1. Obviously, true.
16-
2. Dictionary comparison, hence false.
17-
3. Again, dictionary comparison, first char of `"2"` is greater than the first char of `"1"`.
18-
4. Values `null` and `undefined` equal each other only.
19-
5. Strict equality is strict. Different types from both sides lead to false.
20-
6. Similar to `(4)`, `null` only equals `undefined`.
21-
7. Strict equality of different types.
15+
1. অবশ্যই true বা ঠিক হবে।
16+
2. আভিধানিকভাবে তুলনা তাই false বা ভুল।
17+
3. আবারও, আভিধানিকভাবে তুলনা, প্রথম স্ট্রিংয়ের `"2"` দ্বিতীয় স্ট্রিংয়ের `"1"` এর থেকে বড়।
18+
4. `null` এবং `undefined` একমাত্র একে অপরের সমান।
19+
5. যথাযথ সমতায় `===` দুটি ভ্যালু একই টাইপের হতে হয়। কিন্তু তারা ভিন্ন টাইপের।
20+
6. এটি `(4)` নং এর মতো। `null` একমাত্র `undefined` এর সমান।
21+
7. দুটি ভিন্ন টাইপের ভ্যালু বা মান।

Diff for: 1-js/02-first-steps/08-comparison/1-comparison-questions/task.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ importance: 5
22

33
---
44

5-
# Comparisons
5+
# তুলনা
66

7-
What will be the result for these expressions?
7+
নিচের লাইন গুলোর ফলাফল কী হবে?
88

99
```js no-beautify
1010
5 > 4
@@ -15,4 +15,3 @@ undefined === null
1515
null == "\n0\n"
1616
null === +"\n0\n"
1717
```
18-

0 commit comments

Comments
 (0)