compare NAN in javascript code example

Example 1: compare NaN in javascript if condititon

// Use isNaN() 
// In javascript compare NaN direct alweys return false
let num1 = Number("Vishal");

// This code never work
if(num1 == NaN){  // Direct compare NaN alweys return false so use isNaN() function
  ....... Your Code .......
}  

// This code work
if(isNaN(num1){
  .........Your Code .......
}

Example 2: isnan in javascript

var s = userInput[0];
  if(isNaN(s) !== true)
  {
      console.log("yes");
  }
  else
  {
      console.log("no");
  }