I used
const args = process.argv; args.shift(); args.shift()
to line up my command line arguments and ignore the first 2 words node index.js
My code works just fine but it gives me a bit of anxiety regarding const as a word in NodeJS.
args is not a constant if i'm allowed to change it. Does anybody know why it works the way it does?