filmov
tv
falsy values in javascript with examples using VS Code

Показать описание
By watching this video you will understand what are the falsy values in javascript and How falsy values work in javascript
In order to explain it clear i have discussed about truthy values in javascript also.For better understanding,i used if else statement with truthy and falsy values
Javascript falsy values
1. Zero 0
2. Negative Zero -0
3. Bigint Zero 0n
4. Empty String "" and ''
5. null
6. undefined
7. NaN
8. false
Some of the javascript truthy values
" ", ' ', "0", 1, 'Technursery'
I will share the entire code below
//coerced to false
0, -0, 0n, "",'', null, undefined,NaN,false
//coerced to true
" ", ' ', "0", 1, 'Technursery'
if(1234){
}else{
}
In order to explain it clear i have discussed about truthy values in javascript also.For better understanding,i used if else statement with truthy and falsy values
Javascript falsy values
1. Zero 0
2. Negative Zero -0
3. Bigint Zero 0n
4. Empty String "" and ''
5. null
6. undefined
7. NaN
8. false
Some of the javascript truthy values
" ", ' ', "0", 1, 'Technursery'
I will share the entire code below
//coerced to false
0, -0, 0n, "",'', null, undefined,NaN,false
//coerced to true
" ", ' ', "0", 1, 'Technursery'
if(1234){
}else{
}