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 .......
}