The code is
console.log(process.argv[2]);
I get the following in console
node task.js ABC
'ABC'
<empty line>
Or without parameters (code is commented)
node task.js
<empty line>
How can i remove it?
EDIT: changed console.out to console.log