User Tools

Site Tools


java-script:falsy-truthy-values

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
java-script:falsy-truthy-values [2023/08/09 20:44] – ↷ Page name changed from java-script:falsy-values to java-script:falsy-truthy-values odeftajava-script:falsy-truthy-values [2023/08/09 20:47] (current) odefta
Line 1: Line 1:
-====== Java Script Falsy Values ======+====== Java Script Falsy and Truthy Values ====== 
 + 
 +===== Falsy values =====
  
   A falsy value is a value considered false if it's encountered in a boolean context.   A falsy value is a value considered false if it's encountered in a boolean context.
Line 10: Line 12:
   - **undefined**: The undefined keyword is also falsy.   - **undefined**: The undefined keyword is also falsy.
   - **NaN**: "Not a Number" is considered falsy.   - **NaN**: "Not a Number" is considered falsy.
 +
 +===== Truthy values =====
 +
 +  Everything that is not a falsy value is a truthy value.
 +This includes:
 +  * **'0'**
 +  * **'false'**
 +  * **[]**
 +  * **{}**
 +  * **function () {}**
      
  
java-script/falsy-truthy-values.1691603056.txt.gz · Last modified: 2023/08/09 20:44 by odefta