File tree 3 files changed +111
-112
lines changed
1-js/02-first-steps/08-comparison
3 files changed +111
-112
lines changed Original file line number Diff line number Diff line change @@ -10,12 +10,12 @@ null == "\n0\n" → false
10
10
null === + " \n 0\n " → false
11
11
```
12
12
13
- Some of the reasons :
13
+ কিছু কারণ :
14
14
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 . দুটি ভিন্ন টাইপের ভ্যালু বা মান।
Original file line number Diff line number Diff line change @@ -2,9 +2,9 @@ importance: 5
2
2
3
3
---
4
4
5
- # Comparisons
5
+ # তুলনা
6
6
7
- What will be the result for these expressions ?
7
+ নিচের লাইন গুলোর ফলাফল কী হবে ?
8
8
9
9
``` js no-beautify
10
10
5 > 4
@@ -15,4 +15,3 @@ undefined === null
15
15
null == " \n 0\n "
16
16
null === + " \n 0\n "
17
17
```
18
-
You can’t perform that action at this time.
0 commit comments