Advertisement
dwhitzzz

Valid Value

Aug 11th, 2016
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. console.log(isValid(null));
  2. console.log("test");
  3. console.log(undefined);
  4. console.log(45);
  5.  
  6. function isValid(el) {
  7.     return value !== undefined
  8.     && value !== null
  9.     && value !== '';
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement