Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Js

Idiom #60 Read command line argument

Assign to x the string value of the first command line parameter, after the program name.

const x = process.argv[2]

This only works on nodeJS because browsers aren't a command line.
process.argv[0] is the filepath you're at.
process.argv[1] is `node` (the command used to run the program).
void main(int argc, char *argv[])
{
    char *x = argv[1];
}

argv[0] would be the program name. See §5.1.2.2.1 Program startup in linked doc n1570.pdf .

New implementation...
< >
programming-idioms.org