True and false values :- JavaScript


  • If it is a real value it will return true and without a real value it will return false.
  • So all of the value will return true or false value in the condition statement.
Code:-


  1. <!DOCTYPE html> 
  2. <html> 
  3.  
  4. <head> 
  5.   <meta name="viewport" content="width=device-width, initial-scale=1"> 
  6.  
  7.   <script> 
  8.    /* 
  9.               JavaScript Falsy Values: null, false, 0, undefined, NaN, and "". 
  10.               */ 
  11.    function chk_null(val) 
  12.    { 
  13.     if (val) 
  14.      alert("It is true"); 
  15.     else 
  16.      alert("It is false"); 
  17.    } 
  18.  
  19.    function chk_false(val) 
  20.    { 
  21.     if (val) 
  22.      alert("It is true"); 
  23.     else 
  24.      alert("It is false"); 
  25.    } 
  26.  
  27.    function chk_zero(val) 
  28.    { 
  29.     if (val) 
  30.      alert("It is true"); 
  31.     else 
  32.      alert("It is false"); 
  33.    } 
  34.  
  35.    function chk_undfnd(val) 
  36.    { 
  37.     if (val) 
  38.      alert("It is true"); 
  39.     else 
  40.      alert("It is false"); 
  41.    } 
  42.  
  43.    function chk_NaN(val) 
  44.    { 
  45.     if (val) 
  46.      alert("It is true"); 
  47.     else 
  48.      alert("It is false"); 
  49.    } 
  50.  
  51.    function chk_emptystr(val) 
  52.    { 
  53.     if (val) 
  54.      alert("It is true"); 
  55.     else 
  56.      alert("It is false"); 
  57.    } 
  58.   </script> 
  59.  
  60.  </head> 
  61.  
  62.  <body> 
  63.   <h2>False Values</h2> 
  64.  
  65.   <button onclick="chk_emptystr('');">Check empty string</button> 
  66.   <button onclick="chk_emptystr(' ');">Check string</button> 
  67.  
  68.   <button onclick="chk_null(null);">Check Null</button> 
  69.   <button onclick="chk_false(false);">Check false</button> 
  70.   <button onclick="chk_zero(0);">Check zero</button> 
  71.   <button onclick="chk_undfnd(undefined);">Check undefined</button> 
  72.   <button onclick="chk_NaN(NaN);">check NaN</button> 
  73.  </body> 
  74.  
  75. </html> 
  76.  
  77. </html

True and false values :- JavaScript True and false values :- JavaScript Reviewed by Network security on November 05, 2019 Rating: 5

No comments:

Useful Information

Powered by Blogger.