File tree 3 files changed +110
-116
lines changed
1-js/02-first-steps/09-comparison
3 files changed +110
-116
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. ` "a" ` is smaller than ` "p" ` .
17
- 3 . Again, dictionary comparison, first char ` "2" ` is greater than the first char ` "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 . സംശയമില്ല, സത്യം .
16
+ 2 . ഡിക്ഷ്ണറി ഓർഡറിൽ താരതമ്യം ചെയ്യുന്നു, അതിനാൽ false. ` "a" ` , ` "p" ` യെക്കാൾ ചെറുതാണ് .
17
+ 3 . ഇതും ഡിക്ഷ്ണറി ഓർഡറിൽ താരതമ്യം ചെയ്യുന്നു, ആദ്യ അക്ഷരം ` "2" ` , ആദ്യ അക്ഷരം ` "1" ` നെക്കാൾ വലുതാണ് .
18
+ 4 . ` null ` , ` undefined ` വാല്യുകൾ അവയെ പരസ്പരം മാത്രം പൂർണമാക്കുന്നു( ` == ` ) .
19
+ 5 . സ്ട്രിക്റ്റ് ഇക്വാലിറ്റി ഓപറേറ്റർ സ്ട്രിക്റ്റ് ആണ്. വ്യത്യസ്ത ഡാറ്റാടൈപ്പുകൾ false റിട്ടേൺ ചെയ്യുന്നു .
20
+ 6 . ` (4) ` പോലെത്തന്നെ , ` null ` , ` undefined ` വാല്യുകൾ പരസ്പരം തുല്യമാണ് .
21
+ 7 . സ്ട്രിക്റ്റ് ഇക്വാലിറ്റി, വ്യത്യസ്ത ഡാറ്റാടൈപ്പുകൾ -> false
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ importance: 5
4
4
5
5
# Comparisons
6
6
7
- What will be the result for these expressions ?
7
+ ഈ expressions ന്റെ റിസൾട്ട് എന്തായിരിക്കും ?
8
8
9
9
``` js no-beautify
10
10
5 > 4
You can’t perform that action at this time.
0 commit comments