Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ null == "\n0\n" → false
null === +"\n0\n" → false
```

Some of the reasons:
কিছু কারণ:

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

---

# Comparisons
# তুলনা

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

```js no-beautify
5 > 4
Expand All @@ -15,4 +15,3 @@ undefined === null
null == "\n0\n"
null === +"\n0\n"
```

Loading