Skip to content

Instantly share code, notes, and snippets.

@fuzzylimes
Created July 15, 2018 19:02
Show Gist options
  • Save fuzzylimes/a4a167f847359390bb2b84f7e4e782cc to your computer and use it in GitHub Desktop.
Save fuzzylimes/a4a167f847359390bb2b84f7e4e782cc to your computer and use it in GitHub Desktop.
Helpful javascript snippets

Remove all type unidentified from array

arr = arr.filter(function(n){ return n != undefined }); 

Fully clear a terminal

process.stdout.write('\033c');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment