Answers for "check if is nan r"

1

check for nan in r list

# is.na() can handle lists
# is.nan() can handle only one variable at a time

is.na(NaN)
# TRUE

is.na(NA)
# TRUE
Posted by: Guest on November-20-2020
1

check if var is NaN

let b=1
let n=readline()
if(isNaN(b)){
  console.log("You typed 0!")
}else{
  console.log("You did not type 0!")
}
Posted by: Guest on April-23-2020

Code answers related to "TypeScript"

Browse Popular Code Answers by Language