Guest User

Untitled

a guest
Jul 15th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. ## Remove all type `unidentified` from array
  2. ```js
  3. arr = arr.filter(function(n){ return n != undefined });
  4. ```
  5.  
  6. ## Fully clear a terminal
  7. ```js
  8. process.stdout.write('\033c');
  9. ```
Add Comment
Please, Sign In to add comment