powered by
Opposite of is.null(). Check if entry is not NULL
not.null(x)
a boolean value to indicate if entry is NULL
vector entry
is.null("") # FALSE not.null("") # TRUE not.null(NULL) # FALSE if(not.null(45)) message("something") # yes
Run the code above in your browser using DataLab