Skip to content

Instantly share code, notes, and snippets.

@deleteman
Created March 28, 2019 02:28
Show Gist options
  • Save deleteman/eac58fdeebdeaaa82af6ef2d859b8b8c to your computer and use it in GitHub Desktop.
Save deleteman/eac58fdeebdeaaa82af6ef2d859b8b8c to your computer and use it in GitHub Desktop.
slicing the argv array
let args = process.argv.slice(2);
args.forEach( (val, index) => {
console.log(index + ': ' + val);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment