Advertisement
Guest User

Untitled

a guest
Aug 19th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. const arr = [];
  2. const arr2 = [1];
  3.  
  4.  
  5. console.log(!arr.length); // true - check if array empty
  6. console.log(!!arr.length); // false - check if array is NOT empty
  7.  
  8. console.log(!arr2.length); // false
  9. console.log(!!arr2.length); // true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement