Nullish coalescing vs Logical || by aryan

The difference between these two operators are, nullish(??) operators consider 0 and “”,[],{} as a true.

Only null and undefined is considered as false.

const obj = {
name:’aryan khandelwla’
age:26
}
obj.[‘name’] //aryan khandelwal
obj||obj[‘name’]…


This content originally appeared on DEV Community and was authored by aryan015

The difference between these two operators are, nullish(??) operators consider 0 and "",[],{} as a true.

Only null and undefined is considered as false.

const obj = {
name:'aryan khandelwla'
age:26
}
obj.['name'] //aryan khandelwal
obj||obj['name'] //aryan khandelwla

?? nullish operator helps avoid repetition.[recommended]


This content originally appeared on DEV Community and was authored by aryan015


Print Share Comment Cite Upload Translate Updates
APA

aryan015 | Sciencx (2024-06-17T14:53:29+00:00) Nullish coalescing vs Logical || by aryan. Retrieved from https://www.scien.cx/2024/06/17/nullish-coalescing-vs-logical-by-aryan/

MLA
" » Nullish coalescing vs Logical || by aryan." aryan015 | Sciencx - Monday June 17, 2024, https://www.scien.cx/2024/06/17/nullish-coalescing-vs-logical-by-aryan/
HARVARD
aryan015 | Sciencx Monday June 17, 2024 » Nullish coalescing vs Logical || by aryan., viewed ,<https://www.scien.cx/2024/06/17/nullish-coalescing-vs-logical-by-aryan/>
VANCOUVER
aryan015 | Sciencx - » Nullish coalescing vs Logical || by aryan. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2024/06/17/nullish-coalescing-vs-logical-by-aryan/
CHICAGO
" » Nullish coalescing vs Logical || by aryan." aryan015 | Sciencx - Accessed . https://www.scien.cx/2024/06/17/nullish-coalescing-vs-logical-by-aryan/
IEEE
" » Nullish coalescing vs Logical || by aryan." aryan015 | Sciencx [Online]. Available: https://www.scien.cx/2024/06/17/nullish-coalescing-vs-logical-by-aryan/. [Accessed: ]
rf:citation
» Nullish coalescing vs Logical || by aryan | aryan015 | Sciencx | https://www.scien.cx/2024/06/17/nullish-coalescing-vs-logical-by-aryan/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.