Guest User

Untitled

a guest
Dec 18th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. /**
  2. Test for "value is null or undefined" is
  3. **/
  4. if ( some_variable == null ){
  5. // some_variable is either null or undefined
  6. }
  7.  
  8. // So these two lines are equivalent:
  9. if ( typeof(some_variable) !== "undefined" && some_variable !== null ) {}
  10. if ( some_variable != null ) {}
Add Comment
Please, Sign In to add comment